dropped unnecessary parameter from remove apache
[feisty_meow.git] / scripts / system / remove_apache_site.sh
index fb915d7e7bce887981756ccbfeba1bb4e8d1ea69..e9b68559fd0d1420ec9916438aebb9b0d3af4e53 100644 (file)
@@ -26,17 +26,13 @@ if [[ $EUID != 0 ]]; then
 fi
 
 appname="$1"; shift
-site="$1"; shift
-site_path="$1"; shift
 
-if [ -z "$appname" -o -z "$site" ]; then
+if [ -z "$appname" ]; then
 #hmmm: move to a print_instructions function.
   echo "
 $(basename $0): {app name} 
 
-This script needs to know (1) the application name for the site and
-(2) the DNS name for the apache virtual host.  The appname should be an
-appropriate name for a file-system compatible folder name.
+This script needs to know (1) the DNS name for the apache virtual host.
 The script will uninstall that site's configuration files for apache2.
 "
   exit 1