diff --git a/ehdd/postinstall.sh b/ehdd/postinstall.sh index 0bae580b..f5a829a3 100755 --- a/ehdd/postinstall.sh +++ b/ehdd/postinstall.sh @@ -18,6 +18,7 @@ if [ -e "$EHDD_IMG" ]; then echo "** Disabling system services **" systemctl disable --quiet postfix systemctl disable --quiet dovecot + systemctl disable --quiet postgrey systemctl disable --quiet cron systemctl disable --quiet nginx systemctl disable --quiet php8.0-fpm diff --git a/ehdd/run-this-after-reboot.sh b/ehdd/run-this-after-reboot.sh index bccfa4b4..1ce801a8 100755 --- a/ehdd/run-this-after-reboot.sh +++ b/ehdd/run-this-after-reboot.sh @@ -15,6 +15,8 @@ if [ -s /etc/mailinabox.conf ]; then systemctl start php8.0-fpm systemctl start dovecot systemctl start postfix + # postgrey's main database and local client whitelist are in user-data + systemctl restart postgrey systemctl start nginx systemctl start cron #systemctl start nsd @@ -22,10 +24,5 @@ if [ -s /etc/mailinabox.conf ]; then systemctl start fail2ban systemctl restart mailinabox systemctl start miabldap-capture - # since postgrey's local client whitelist is in user-data, reload - # to ensure postgrey daemon has it. - # - # TODO: this should be 'reload' but is broken in jammy (reload fails on a systemctl permissions issue accessing postgrey's pid file) - systemctl restart postgrey fi