chmod -R g+rx "$chow_path"
# walk backwards up the path and fix perms.
while [[ $chow_path != $HOME ]]; do
-echo chow path is now $chow_path
+#echo chow path is now $chow_path
chmod g+rx "$chow_path"
test_or_die "Failed to add group permissions on the path: $chow_path"
# reassert the user's ownership of any directories we might have just created.
exit 1
fi
-appname="$1"; shift
+site="$1"; shift
-if [ -z "$appname" ]; 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 DNS name for the apache virtual host.
The script will uninstall that site's configuration files for apache2.
fi
disable_site "$site"
-remove_apache_config "$appname" "$site"
+remove_apache_config "$site"
restart_apache