chiark / gitweb /
Allow vhost site names without .conf at the end
authorPaul Wise <pabs@debian.org>
Sun, 31 May 2015 01:47:09 +0000 (09:47 +0800)
committerPaul Wise <pabs@debian.org>
Sun, 31 May 2015 01:47:09 +0000 (09:47 +0800)
apache2-vhost-update

index de224ea3f5cc72d7f9e97298eddf4d1cbe28a21e..cf5b1dbcb0992995b1817d24a94cb0786fce23e0 100755 (executable)
@@ -91,6 +91,10 @@ if echo "$site" | grep /; then
        exit 1
 fi
 
+if [ -f "$STAGINGDIR/$site.conf" ] ; then
+       site="$site.conf"
+fi
+
 if ! [ -f "$STAGINGDIR/$site" ]; then
        echo "$STAGINGDIR/$site does not exist or is not a file" >&2
        exit 1