3 # uninstalls the apache website for a specified domain.
5 # auto-find the scripts, since we might want to run this as sudo.
6 export THISDIR="$( \cd "$(\dirname "$0")" && /bin/pwd )" # obtain the script's working directory.
7 export FEISTY_MEOW_APEX="$( \cd "$THISDIR/../.." && \pwd )"
9 source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"
10 source "$FEISTY_MEOW_SCRIPTS/system/common_sysadmin.sh"
12 # some convenient defaults for our current usage.
14 if [ -z "$BASE_APPLICATION_PATH" ]; then
15 BASE_APPLICATION_PATH="$HOME/apps"
17 if [ -z "$STORAGE_SUFFIX" ]; then
18 STORAGE_SUFFIX="/public"
21 # main body of script.
23 if [[ $EUID != 0 ]]; then
24 echo "This script must be run as root or sudo."
30 if [ -z "$site" ]; then
31 #hmmm: move to a print_instructions function.
33 $(basename $0): {dns name}
35 This script needs to know (1) the DNS name for the apache virtual host.
36 The script will uninstall that site's configuration files for apache2.
42 remove_apache_config "$site"