1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

setting permissions on mail.log fixes the github actions failure for upgrade-to-upstream - this is just clean up

This commit is contained in:
downtownallday 2022-09-22 18:31:59 -04:00
parent 35aa9f7691
commit 9a381961c5
2 changed files with 1 additions and 4 deletions

View File

@ -408,4 +408,5 @@ EOF
# prevent rsyslog from writing to it. Fix the ownership.
[ -e /var/log/nsd.log ] && chown syslog:adm /var/log/nsd.log
[ -e /var/log/mail.log ] && chown syslog:adm /var/log/mail.log
[ -e /var/log/mail.err ] && chown syslog:adm /var/log/mail.err
restart_service rsyslog

View File

@ -366,10 +366,6 @@ flush_logs() {
else
pid=$(/usr/bin/pidof rsyslogd)
fi
# if [ "$GITHUB_ACTIONS" = "true" ]; then
# systemctl restart rsyslog >>$TEST_OF 2>&1
# sleep 5
# elif [ ! -z "$pid" ]; then
if [ ! -z "$pid" ]; then
kill -HUP $pid >>$TEST_OF 2>&1
sleep 2