X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsystem%2Fremove_apache_site.sh;h=ef6c8b6d79915b608f44707f9e6094bcca87a23c;hb=024cd33d388ea7354868861a2b1861065db81113;hp=fb915d7e7bce887981756ccbfeba1bb4e8d1ea69;hpb=353d2f0887e378b38e81d61af52629369e1d8930;p=feisty_meow.git diff --git a/scripts/system/remove_apache_site.sh b/scripts/system/remove_apache_site.sh index fb915d7e..ef6c8b6d 100644 --- a/scripts/system/remove_apache_site.sh +++ b/scripts/system/remove_apache_site.sh @@ -25,24 +25,20 @@ if [[ $EUID != 0 ]]; then exit 1 fi -appname="$1"; shift site="$1"; shift -site_path="$1"; shift -if [ -z "$appname" -o -z "$site" ]; then +if [ -z "$site" ]; then #hmmm: move to a print_instructions function. echo " -$(basename $0): {app name} +$(basename $0): {dns 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 fi disable_site "$site" -remove_apache_config "$appname" "$site" +remove_apache_config "$site" restart_apache