vhost-stack/bin/vhost-user-jail-reset.sh

91 lines
2.5 KiB
Bash
Raw Normal View History

2021-04-04 13:28:22 -07:00
#!/bin/bash
#
# vhost-stack
# https://git.stack-source.com/msb/vhost-stack
2022-08-22 13:22:16 -07:00
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2021-04-04 13:28:22 -07:00
2021-10-05 11:33:24 -07:00
# CURRENTLY IN DEBUG MODE. ECHOS COMMANDS, DOES NOT RUN ANYTHING
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 "Rebuild jail for specified user."
echo ""
2021-10-05 11:33:24 -07:00
echo "usage: $thisfilename -u <username> [-h]"
2021-09-16 16:21:35 -07:00
echo ""
echo " -h Print this help."
2021-10-05 11:33:24 -07:00
echo " -u <username> System username to reset jail for."
2021-09-16 16:21:35 -07:00
exit
}
2021-10-05 11:33:24 -07:00
vhost:getoptions "$@"
# check for username
if [ -z "$username" ]; then
2021-04-04 13:28:22 -07:00
echo "username not set"
exit 1
fi
if ! grep -q "^$username:" /etc/passwd; then
echo "$username is not installed on this server"
exit 1
fi
if [[ ! -d /home/$username ]]; then
echo "/home/$username does not exists"
exit 1
fi
if [[ ! -d "/usr/jails/$username" ]]; then
echo "/usr/jails/$username does not exists"
exit 1
fi
if ! grep -q ":/usr/jails/$username/./home/$username:" /etc/passwd; then
echo "$username does not have jail home dir set"
exit 1
fi
# check if any virtualhosts exist
2021-04-15 10:01:11 -07:00
if [ "$(ls -A /usr/jails/$username/srv/www)" ]; then
2021-04-04 13:28:22 -07:00
# set virtualhosts array
cd /usr/jails/$username/srv/www/
virtualhosts=(*)
# unmount virtualhost dir(s)
for virtualhost in "${!virtualhosts[@]}"
do
virtualhost=${virtualhosts[$virtualhost]}
echo umount /usr/jails/$username/srv/www/$virtualhost
done
fi
# unmount jail home dir
echo umount /usr/jails/$username/home/$username
# del jail dir
echo rm -r /usr/jails/$username
# (re)create jail
echo jk_init -k -j /usr/jails/$username shellstack
2021-04-15 10:01:11 -07:00
echo mkdir -p /usr/jails/$username/opt /usr/jails/$username/usr/sbin /usr/jails/$username/tmp /usr/jails/$username/srv/www
2021-04-15 09:31:24 -07:00
echo ln -s /usr/local/sbin/mini_sendmail /usr/jails/$username/usr/sbin/sendmail
2021-04-04 13:28:22 -07:00
echo chmod a+rwx /usr/jails/$username/tmp
echo install -d -o $username -g $username -m 755 /usr/jails/$username/home/$username
echo jk_jailuser -n -j /usr/jails/$username -s /bin/bash $username
# remount dirs
2023-08-31 11:27:15 -07:00
echo mount --fstab /etc/fstab.jails /usr/jails/$username/home/$username
2021-04-04 13:28:22 -07:00
virtualhostcount=${#virtualhosts[@]}
if [ "$virtualhostcount" -gt 0 ]; then
for virtualhost in "${!virtualhosts[@]}"
do
virtualhost=${virtualhosts[$virtualhost]}
echo install -d -o $username -g $username -m 755 /usr/jails/$username/srv/www/$virtualhost
2023-08-31 11:27:15 -07:00
echo mount --fstab /etc/fstab.jails /usr/jails/$username/srv/www/$virtualhost
2021-04-04 13:28:22 -07:00
done
fi