I prepared two bionic instances to run over the weekend. One is running auditd from bionic, and the other is running the SRU proposed package. I have auditd being restarted via this script in both (just the email message is different, to say which package it was): #!/bin/bash result=0 while /bin/true; do date sudo systemctl restart auditd || result=$? if [ "$result" -ne "0" ]; then echo "FAILED, result=$result" break fi pid=$(pidof auditd) || result=$? if [ "$result" -ne "0" ]; then echo "FAILED, auditd not running" break fi echo "auditd pid = $pid" sleep 2 echo done mail -s "ALERT: audit orig test failed"