reworked to use new systemd path configs to reload services
This commit is contained in:
parent
1d2ae28e86
commit
7149c743cc
|
@ -73,15 +73,6 @@ vhost::set-phpVersion
|
||||||
if [[ -f /etc/php/$phpVersion/fpm/pool.d/$username.conf ]]; then
|
if [[ -f /etc/php/$phpVersion/fpm/pool.d/$username.conf ]]; then
|
||||||
if ! /bin/grep -q "^php_admin_value\[sendmail_path\]" /etc/php/$phpVersion/fpm/pool.d/$username.conf; then
|
if ! /bin/grep -q "^php_admin_value\[sendmail_path\]" /etc/php/$phpVersion/fpm/pool.d/$username.conf; then
|
||||||
echo "php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -fwebmaster@$domain" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
echo "php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -fwebmaster@$domain" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
||||||
# restart php-fpm if it's active
|
|
||||||
if systemctl is-active --quiet php$phpVersion-fpm ; then
|
|
||||||
# check for valid config before restarting
|
|
||||||
if /usr/sbin/php-fpm$phpVersion -t >/dev/null 2>&1 ; then
|
|
||||||
systemctl reload php$phpVersion-fpm
|
|
||||||
else
|
|
||||||
echo "WARNING: php-fpm$phpVersion configuration test failed"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ username=$(stat -c '%U' /srv/www/$domain)
|
||||||
# disable the apache conf and reload apache
|
# disable the apache conf and reload apache
|
||||||
if [[ -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
if [[ -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
||||||
a2dissite --quiet $domain
|
a2dissite --quiet $domain
|
||||||
systemctl --quiet is-active apache2 && systemctl --quiet reload apache2
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# remove the apache config
|
# remove the apache config
|
||||||
|
|
|
@ -29,5 +29,5 @@ if [[ -z $domain ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
if [[ -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
||||||
a2dissite --quiet $domain && systemctl --quiet is-active apache2 && systemctl --quiet reload apache2
|
a2dissite --quiet $domain
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -156,16 +156,10 @@ fi
|
||||||
echo "$macro_vhost_line" > /etc/apache2/sites-available/$domain.conf
|
echo "$macro_vhost_line" > /etc/apache2/sites-available/$domain.conf
|
||||||
|
|
||||||
# enable apache conf
|
# enable apache conf
|
||||||
if [[ ! -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
if [[ -h /etc/apache2/sites-enabled/$domain.conf ]]; then
|
||||||
|
# modify timestamp on existing symlink to trigger apache restart
|
||||||
|
touch --no-dereference /etc/apache2/sites-enabled/$domain.conf
|
||||||
|
else
|
||||||
a2ensite --quiet $domain.conf
|
a2ensite --quiet $domain.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# restart apache
|
|
||||||
if systemctl --quiet is-active apache2 ; then
|
|
||||||
if /usr/sbin/apachectl -t >/dev/null 2>&1 ; then
|
|
||||||
systemctl --quiet reload apache2
|
|
||||||
else
|
|
||||||
echo "apache config test failed, not doing restart"
|
|
||||||
exit 2
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
|
@ -122,14 +122,6 @@ if [[ -d /srv/www/$domain ]]; then
|
||||||
# /etc/ configs
|
# /etc/ configs
|
||||||
if [[ -d /srv/www/$domain/.exp/etc ]]; then
|
if [[ -d /srv/www/$domain/.exp/etc ]]; then
|
||||||
echo "cp -a /srv/www/$domain/.exp/etc/* /etc/"
|
echo "cp -a /srv/www/$domain/.exp/etc/* /etc/"
|
||||||
# reload apache
|
|
||||||
if [[ -f /srv/www/$domain/.exp/etc/apache2/sites-enabled/$domain.conf ]]; then
|
|
||||||
echo "systemctl reload apache2.service"
|
|
||||||
fi
|
|
||||||
# reload php
|
|
||||||
if [[ -f /srv/www/$domain/.exp/etc/php/$phpVersion/fpm/pool.d/$username.conf ]]; then
|
|
||||||
echo "systemctl reload php$phpVersion-fpm"
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -116,12 +116,4 @@ if [[ ! -f /etc/php/$phpVersion/fpm/pool.d/$username.conf ]]; then
|
||||||
fi
|
fi
|
||||||
echo "pm.max_children = $fpmmax" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
echo "pm.max_children = $fpmmax" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
||||||
echo "pm.process_idle_timeout = 3s;" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
echo "pm.process_idle_timeout = 3s;" >> /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
||||||
# restart php$phpVersion-fpm
|
|
||||||
if systemctl is-active --quiet php$phpVersion-fpm ; then
|
|
||||||
if /usr/sbin/php-fpm$phpVersion -t >/dev/null 2>&1 ; then
|
|
||||||
systemctl reload php$phpVersion-fpm
|
|
||||||
else
|
|
||||||
echo "WARNING: php-fpm$phpVersion configuration test failed"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -60,14 +60,6 @@ fi
|
||||||
vhost::set-phpVersion
|
vhost::set-phpVersion
|
||||||
if [[ -f "/etc/php/$phpVersion/fpm/pool.d/$username.conf" ]]; then
|
if [[ -f "/etc/php/$phpVersion/fpm/pool.d/$username.conf" ]]; then
|
||||||
rm /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
rm /etc/php/$phpVersion/fpm/pool.d/$username.conf
|
||||||
# restart php$phpVersion-fpm if it's running
|
|
||||||
if systemctl is-active --quiet php$phpVersion-fpm ; then
|
|
||||||
if /usr/sbin/php-fpm$phpVersion -t >/dev/null 2>&1 ; then
|
|
||||||
systemctl reload php$phpVersion-fpm
|
|
||||||
else
|
|
||||||
echo "WARNING: php-fpm$phpVersion configuration test failed"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# if users home dir is mounted in a jail, unmount it
|
# if users home dir is mounted in a jail, unmount it
|
||||||
|
@ -96,6 +88,4 @@ fi
|
||||||
# remove jailkit socket if it exists
|
# remove jailkit socket if it exists
|
||||||
if grep -q "\[/usr/jails/$username/dev/log\]" /etc/jailkit/jk_socketd.ini; then
|
if grep -q "\[/usr/jails/$username/dev/log\]" /etc/jailkit/jk_socketd.ini; then
|
||||||
sed -i "/\/usr\/jails\/$username\/dev\/log/,+3 d" /etc/jailkit/jk_socketd.ini
|
sed -i "/\/usr\/jails\/$username\/dev\/log/,+3 d" /etc/jailkit/jk_socketd.ini
|
||||||
killall jk_socketd
|
|
||||||
jk_socketd
|
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -56,6 +56,4 @@ chmod a+rwx /usr/jails/$username/tmp
|
||||||
install -d -o $username -g $username -m 755 /usr/jails/$username/home/$username
|
install -d -o $username -g $username -m 755 /usr/jails/$username/home/$username
|
||||||
mount --bind /home/$username /usr/jails/$username/home/$username
|
mount --bind /home/$username /usr/jails/$username/home/$username
|
||||||
echo "/home/$username /usr/jails/$username/home/$username none bind 0 0" >> /etc/fstab.jails
|
echo "/home/$username /usr/jails/$username/home/$username none bind 0 0" >> /etc/fstab.jails
|
||||||
killall jk_socketd
|
|
||||||
jk_socketd
|
|
||||||
jk_jailuser -n -j /usr/jails/$username -s /bin/bash $username
|
jk_jailuser -n -j /usr/jails/$username -s /bin/bash $username
|
||||||
|
|
|
@ -60,6 +60,4 @@ fi
|
||||||
if [[ -f /etc/varnish/sites.d/$domain ]]; then
|
if [[ -f /etc/varnish/sites.d/$domain ]]; then
|
||||||
rm /etc/varnish/sites.d/$domain
|
rm /etc/varnish/sites.d/$domain
|
||||||
/usr/local/bin/vhost-varnish-update-sites.sh $vhost_enable
|
/usr/local/bin/vhost-varnish-update-sites.sh $vhost_enable
|
||||||
# uncomment to flush varnish cache
|
|
||||||
# systemctl is-active --quiet varnish && systemctl reload --quiet varnish
|
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -103,7 +103,6 @@ if [[ ! -f "/etc/varnish/sites.d/$domain.vcl" ]]; then
|
||||||
echo " }" >> /etc/varnish/sites.d/$domain.vcl
|
echo " }" >> /etc/varnish/sites.d/$domain.vcl
|
||||||
echo "}" >> /etc/varnish/sites.d/$domain.vcl
|
echo "}" >> /etc/varnish/sites.d/$domain.vcl
|
||||||
/usr/local/bin/vhost-varnish-update-sites.sh
|
/usr/local/bin/vhost-varnish-update-sites.sh
|
||||||
systemctl is-active --quiet varnish && systemctl reload --quiet varnish
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
/usr/local/bin/vhost-enable.sh $vhost_enable
|
/usr/local/bin/vhost-enable.sh $vhost_enable
|
||||||
|
|
26
install.sh
26
install.sh
|
@ -40,6 +40,16 @@ if [[ -f /etc/needrestart/needrestart.conf ]]; then
|
||||||
sed -i "s|^#\$nrconf{restart} = 'i';|\$nrconf{restart} = 'a';|g" /etc/needrestart/needrestart.conf
|
sed -i "s|^#\$nrconf{restart} = 'i';|\$nrconf{restart} = 'a';|g" /etc/needrestart/needrestart.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# create local systemd dir
|
||||||
|
if [[ ! -d /usr/local/lib/systemd/system ]]; then
|
||||||
|
mkdir -p /usr/local/lib/systemd/system
|
||||||
|
fi
|
||||||
|
|
||||||
|
# install systemd files and reload
|
||||||
|
cp systemd/* /usr/local/lib/systemd/system/
|
||||||
|
chmod 644 /usr/local/lib/systemd/system/*
|
||||||
|
systemctl daemon-reload
|
||||||
|
|
||||||
# install pwgen, used to create random passwords
|
# install pwgen, used to create random passwords
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install pwgen
|
DEBIAN_FRONTEND=noninteractive apt-get -y install pwgen
|
||||||
|
|
||||||
|
@ -94,6 +104,7 @@ echo ' AllowOverride None' >> /etc/apache2/conf-available/security.conf
|
||||||
echo ' Options None' >> /etc/apache2/conf-available/security.conf
|
echo ' Options None' >> /etc/apache2/conf-available/security.conf
|
||||||
echo ' Require all granted' >> /etc/apache2/conf-available/security.conf
|
echo ' Require all granted' >> /etc/apache2/conf-available/security.conf
|
||||||
echo '</Directory>' >> /etc/apache2/conf-available/security.conf
|
echo '</Directory>' >> /etc/apache2/conf-available/security.conf
|
||||||
|
systemctl enable --now vhost-reload-apache.path
|
||||||
|
|
||||||
# configure php
|
# configure php
|
||||||
sed -i "s|post_max_size = 8M|post_max_size = 256M|g" /etc/php/8.1/fpm/php.ini
|
sed -i "s|post_max_size = 8M|post_max_size = 256M|g" /etc/php/8.1/fpm/php.ini
|
||||||
|
@ -112,6 +123,7 @@ systemctl reload apache2
|
||||||
# sed -i "s|^user = www-data|user = $USERNAME|g" /etc/php/7.2/fpm/pool.d/www.conf
|
# sed -i "s|^user = www-data|user = $USERNAME|g" /etc/php/7.2/fpm/pool.d/www.conf
|
||||||
# sed -i "s|^group = www-data|group = $USERNAME|g" /etc/php/7.2/fpm/pool.d/www.conf
|
# sed -i "s|^group = www-data|group = $USERNAME|g" /etc/php/7.2/fpm/pool.d/www.conf
|
||||||
systemctl reload php8.1-fpm
|
systemctl reload php8.1-fpm
|
||||||
|
systemctl enable --now vhost-reload-php.path
|
||||||
|
|
||||||
if [ -d /srv/www ]; then
|
if [ -d /srv/www ]; then
|
||||||
if [ -d /var/www ]; then
|
if [ -d /var/www ]; then
|
||||||
|
@ -134,21 +146,13 @@ else
|
||||||
install --owner=vhost --group=vhost --mode=755 --directory /srv/www/html
|
install --owner=vhost --group=vhost --mode=755 --directory /srv/www/html
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# create local systemd dir, used by webalizer & jailkit
|
|
||||||
if [[ ! -d /usr/local/lib/systemd/system ]]; then
|
|
||||||
mkdir -p /usr/local/lib/systemd/system
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Webalizer
|
# Webalizer
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install webalizer
|
DEBIAN_FRONTEND=noninteractive apt-get -y install webalizer
|
||||||
cp etc/logrotate.d/apache2 /etc/logrotate.d/apache2
|
cp etc/logrotate.d/apache2 /etc/logrotate.d/apache2
|
||||||
chmod 644 /etc/logrotate.d/apache2
|
chmod 644 /etc/logrotate.d/apache2
|
||||||
rm /etc/cron.daily/webalizer
|
rm /etc/cron.daily/webalizer
|
||||||
rmdir /srv/www/webalizer
|
rmdir /srv/www/webalizer
|
||||||
cp systemd/webalizer.* /usr/local/lib/systemd/system/
|
systemctl enable --now webalizer.timer
|
||||||
chmod 644 /usr/local/lib/systemd/system/webalizer.*
|
|
||||||
systemctl enable webalizer.timer
|
|
||||||
systemctl start webalizer.timer
|
|
||||||
|
|
||||||
# install status.php
|
# install status.php
|
||||||
cp html/status.php /srv/www/html
|
cp html/status.php /srv/www/html
|
||||||
|
@ -217,9 +221,8 @@ if ! [ -f "/etc/fstab.jails" ]; then
|
||||||
chmod 644 /etc/fstab.jails
|
chmod 644 /etc/fstab.jails
|
||||||
echo "# /etc/fstab.jails: jail bind mounts information." > /etc/fstab.jails
|
echo "# /etc/fstab.jails: jail bind mounts information." > /etc/fstab.jails
|
||||||
fi
|
fi
|
||||||
cp systemd/jail-mounts.service /usr/local/lib/systemd/system/
|
|
||||||
chmod 644 /usr/local/lib/systemd/system/jail-mounts.service
|
|
||||||
systemctl enable jail-mounts.service
|
systemctl enable jail-mounts.service
|
||||||
|
systemctl enable --now vhost-reload-jailkit.path
|
||||||
|
|
||||||
# varnish
|
# varnish
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install varnish
|
DEBIAN_FRONTEND=noninteractive apt-get -y install varnish
|
||||||
|
@ -227,6 +230,7 @@ cp -a etc/varnish/* /etc/varnish/
|
||||||
find /etc/varnish/ -type d -exec chmod 755 {} +
|
find /etc/varnish/ -type d -exec chmod 755 {} +
|
||||||
find /etc/varnish/ -type f -exec chmod 644 {} +
|
find /etc/varnish/ -type f -exec chmod 644 {} +
|
||||||
chown -R root:root /etc/varnish/
|
chown -R root:root /etc/varnish/
|
||||||
|
systemctl enable --now vhost-reload-varnish.path
|
||||||
## /usr/bin/varnishncsa
|
## /usr/bin/varnishncsa
|
||||||
|
|
||||||
# mini_sendmail so users can send out of jails
|
# mini_sendmail so users can send out of jails
|
||||||
|
|
10
systemd/vhost-reload-apache.path
Normal file
10
systemd/vhost-reload-apache.path
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Reload Apache on changes to sites-enabled configs"
|
||||||
|
After=apache2.service
|
||||||
|
|
||||||
|
[Path]
|
||||||
|
PathChanged=/etc/apache2/sites-enabled/
|
||||||
|
Unit=vhost-reload-apache.service
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
7
systemd/vhost-reload-apache.service
Normal file
7
systemd/vhost-reload-apache.service
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Reload Apache
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStartPre=sleep 2
|
||||||
|
ExecStart=systemctl reload apache2
|
9
systemd/vhost-reload-jailkit.path
Normal file
9
systemd/vhost-reload-jailkit.path
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Reload Jailkit socketd on changes to config file"
|
||||||
|
|
||||||
|
[Path]
|
||||||
|
PathChanged=/etc/jailkit/jk_socketd.ini
|
||||||
|
Unit=vhost-reload-jailkit.service
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
7
systemd/vhost-reload-jailkit.service
Normal file
7
systemd/vhost-reload-jailkit.service
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Reload Jailkit socketd
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStartPre=killall jk_socketd
|
||||||
|
ExecStart=/usr/sbin/jk_socketd
|
10
systemd/vhost-reload-php.path
Normal file
10
systemd/vhost-reload-php.path
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Reload PHP-FPM on changes to pool config files"
|
||||||
|
After=php8.1-fpm.service
|
||||||
|
|
||||||
|
[Path]
|
||||||
|
PathChanged=/etc/php/8.1/fpm/pool.d/
|
||||||
|
Unit=vhost-reload-php.service
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
7
systemd/vhost-reload-php.service
Normal file
7
systemd/vhost-reload-php.service
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Reload PHP-FPM
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStartPre=sleep 2
|
||||||
|
ExecStart=systemctl reload php8.1-fpm
|
11
systemd/vhost-reload-varnish.path
Normal file
11
systemd/vhost-reload-varnish.path
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
[Unit]
|
||||||
|
Description="Reload Varnish on changes to site configs"
|
||||||
|
After=varnish.service
|
||||||
|
|
||||||
|
[Path]
|
||||||
|
PathChanged=/etc/varnish/sites.d/
|
||||||
|
PathChanged=/etc/varnish/sites.vcl
|
||||||
|
Unit=vhost-reload-varnish.service
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
7
systemd/vhost-reload-varnish.service
Normal file
7
systemd/vhost-reload-varnish.service
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Reload Varnish
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStartPre=sleep 1
|
||||||
|
ExecStart=systemctl reload varnish.service
|
26
update.sh
26
update.sh
|
@ -82,16 +82,16 @@ if ! diff -q libexec/command-not-found-handle /usr/local/libexec/command-not-fou
|
||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check systemd timer for update
|
# check for systemd updates
|
||||||
if ! diff -q systemd/webalizer.service /usr/local/lib/systemd/system/webalizer.service ; then
|
systemdConfigs=(`ls -1 systemd/`)
|
||||||
cp systemd/webalizer.service /usr/local/lib/systemd/system/webalizer.service
|
for systemdConfig in "${systemdConfigs[@]}"
|
||||||
chmod 644 /usr/local/lib/systemd/system/webalizer.service
|
do
|
||||||
echo "systemd/webalizer.service updated"
|
if ! diff -q systemd/$systemdConfig /usr/local/lib/systemd/system/$systemdConfig ; then
|
||||||
echo
|
cp systemd/$systemdConfig /usr/local/lib/systemd/system/$systemdConfig
|
||||||
fi
|
chmod 644 /usr/local/lib/systemd/system/$systemdConfig
|
||||||
if ! diff -q systemd/webalizer.timer /usr/local/lib/systemd/system/webalizer.timer ; then
|
systemctl daemon-reload
|
||||||
cp systemd/webalizer.timer /usr/local/lib/systemd/system/webalizer.timer
|
/systemctl --quiet is-active $systemdConfig && systemctl --quiet reload $systemdConfig
|
||||||
chmod 644 /usr/local/lib/systemd/system/webalizer.timer
|
echo "systemd/$systemdConfig updated"
|
||||||
echo "systemd/webalizer.timer updated"
|
echo
|
||||||
echo
|
fi
|
||||||
fi
|
done
|
||||||
|
|
Loading…
Reference in New Issue
Block a user