88 lines
2.2 KiB
Bash
Executable File
88 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# vhost-stack
|
|
# https://git.stack-source.com/msb/vhost-stack
|
|
# MIT License Copyright (c) 2021 Matthew Saunders Brown
|
|
|
|
# load include file
|
|
source $(dirname $0)/vhost.sh
|
|
|
|
help()
|
|
{
|
|
thisfilename=$(basename -- "$0")
|
|
echo "Removes virtualhost from server."
|
|
echo ""
|
|
echo "usage: $thisfilename virtualhost [OPTIONS]"
|
|
echo ""
|
|
echo " -h Print this help."
|
|
exit
|
|
}
|
|
|
|
# check for and set virtualhost
|
|
if [ -n "$1" ]; then
|
|
if [ $1 == "-h" ]; then
|
|
help
|
|
else
|
|
virtualhost="${1,,}"
|
|
fi
|
|
else
|
|
help
|
|
fi
|
|
|
|
# remove virtualhost dir
|
|
if [ ! -d /srv/www/$virtualhost ]; then
|
|
echo "virtualhost dir does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
username=$(stat -c '%U' /srv/www/$virtualhost)
|
|
|
|
# disable the apache conf and reload apache
|
|
if [ -h /etc/apache2/sites-enabled/$virtualhost.conf ]; then
|
|
a2dissite --quiet $virtualhost
|
|
systemctl --quiet is-active apache2 && systemctl --quiet reload apache2
|
|
fi
|
|
|
|
# remove the apache config
|
|
if [ -f /etc/apache2/sites-available/$virtualhost.conf ]; then
|
|
rm /etc/apache2/sites-available/$virtualhost.conf
|
|
fi
|
|
|
|
# remove varnish config
|
|
if [ -f /etc/varnish/sites.d/$virtualhost.vcl ]; then
|
|
rm /etc/varnish/sites.d/$virtualhost.vcl
|
|
/usr/local/bin/vhost-varnish-update-sites.sh
|
|
# don't bother to restart varnish as it will clear cache unnecessarily
|
|
fi
|
|
|
|
# if virtualhost is mounted in a jail, unmount it
|
|
if grep -q "^/dev/sda /usr/jails/$username/srv/www/$virtualhost " /etc/mtab; then
|
|
umount /usr/jails/$username/srv/www/$virtualhost
|
|
fi
|
|
|
|
# if virtualhost mount in fstab.jails exists remove it
|
|
if grep -q "/usr/jails/$username/srv/www/$virtualhost" /etc/fstab.jails; then
|
|
sed -i "\|/usr/jails/$username/srv/www/$virtualhost|d" /etc/fstab.jails
|
|
fi
|
|
|
|
# if virtualhost symlink exists in jail remove it
|
|
if [ -h /usr/jails/$username/home/$username/$virtualhost ]; then
|
|
unlink /usr/jails/$username/home/$username/$virtualhost
|
|
fi
|
|
|
|
# if virtualhost symlink exists in home dir remove it
|
|
if [ -h /home/$username/$virtualhost ]; then
|
|
unlink /home/$username/$virtualhost
|
|
fi
|
|
|
|
# if virtualhost dir exists in jail remove it
|
|
if [ -d /usr/jails/$username/srv/www/$virtualhost ]; then
|
|
rm -r /usr/jails/$username/srv/www/$virtualhost
|
|
fi
|
|
|
|
# remove virtualhost dir
|
|
if [ -d /srv/www/$virtualhost ]; then
|
|
rm -r /srv/www/$virtualhost
|
|
fi
|
|
|