2021-04-04 13:28:22 -07:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# vhost-stack
|
|
|
|
# https://git.stack-source.com/msb/vhost-stack
|
|
|
|
# MIT License Copyright (c) 2021 Matthew Saunders Brown
|
|
|
|
|
2021-04-04 14:15:16 -07:00
|
|
|
# load include file
|
|
|
|
source $(dirname $0)/vhost.sh
|
2021-04-04 13:28:22 -07:00
|
|
|
|
2021-09-16 16:21:35 -07:00
|
|
|
help()
|
|
|
|
{
|
|
|
|
thisfilename=$(basename -- "$0")
|
|
|
|
echo "Disable Apache config for specified virtualhost."
|
|
|
|
echo ""
|
|
|
|
echo "usage: $thisfilename virtualhost"
|
|
|
|
echo ""
|
|
|
|
echo " -h Print this help."
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
2021-04-04 13:28:22 -07:00
|
|
|
# check for and set virtualhost
|
|
|
|
if [ -n "$1" ]; then
|
2021-09-16 16:21:35 -07:00
|
|
|
if [ $1 == "-h" ]; then
|
|
|
|
help
|
|
|
|
else
|
|
|
|
virtualhost="${1,,}"
|
|
|
|
fi
|
2021-04-04 13:28:22 -07:00
|
|
|
else
|
|
|
|
echo "virtualhost not set"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2021-08-14 13:04:46 -07:00
|
|
|
if [[ -h /etc/apache2/sites-enabled/$virtualhost.conf ]]; then
|
|
|
|
a2dissite --quiet $virtualhost && systemctl --quiet is-active apache2 && systemctl --quiet reload apache2
|
|
|
|
fi
|