#!/usr/bin/sh # Helper script to provide legacy auditd service options not # directly supported by systemd. test -f /etc/audit/auditd.conf || exit 6 /sbin/auditctl --signal stop sleep 1 echo "Redirecting start to /bin/systemctl start auditd.service" /bin/systemctl start auditd.service RETVAL="$?" exit $RETVAL