diff --git a/setup/dns.sh b/setup/dns.sh index 1119aff6..da16c75a 100755 --- a/setup/dns.sh +++ b/setup/dns.sh @@ -92,6 +92,19 @@ EOF echo "Installing nsd (DNS server)..." apt_install nsd ldnsutils openssh-client +# ensure nsd can write to its log file + +rwpaths=$(awk -F= '/^ReadWritePaths=/ { print $2 }' /lib/systemd/system/nsd.service) +mkdir -p /etc/systemd/system/nsd.service.d +cat >/etc/systemd/system/nsd.service.d/miab.conf <>$TEST_OF 2>&1 <<< "$line" - if [ $? -eq 1 ]; then + r=$? + if [ $r -eq 1 ]; then let ec+=1 record "$F_DANGER[ERROR] $line$F_RESET" - elif [ $? -eq 2 ]; then + elif [ $r -eq 2 ]; then let wc+=1 record "$F_WARN[ WARN] $line$F_RESET" else @@ -256,8 +258,17 @@ check_logs() { [ ${#types[@]} -eq 0 ] && types=(syslog slapd mail) # flush records - kill -HUP $(cat /var/run/rsyslogd.pid) - sleep 2 + local pid + if [ -e /var/run/rsyslogd.pid ]; then + # the pid file won't exist if rsyslogd was started with -iNONE + pid=$(cat /var/run/rsyslogd.pid) + else + pid=$(/usr/bin/pidof rsyslogd) + fi + if [ ! -z "$pid" ]; then + kill -HUP $pid + sleep 2 + fi if array_contains syslog ${types[@]}; then detect_syslog_error && $assert && diff --git a/tests/suites/mail-access.sh b/tests/suites/mail-access.sh index 01b83454..702ddf1e 100644 --- a/tests/suites/mail-access.sh +++ b/tests/suites/mail-access.sh @@ -39,14 +39,18 @@ postgrey_whitelist_recipents() { echo "$recipient" >> "$wl" || \ die "Could not add postgrey whitelist recipient to $wl" done - systemctl reload postgrey + if ! systemctl reload postgrey >/dev/null 2>&1; then + systemctl restart postgrey >>$TEST_OF 2>&1 + fi } postgrey_reset_whitelists() { local wl="/etc/postgrey/whitelist_recipients.local" rm -f "$wl" - systemctl reload postgrey + if ! systemctl reload postgrey >/dev/null 2>&1; then + systemctl restart postgrey >>$TEST_OF 2>&1 + fi }