DDeepin Developerfeat: Init commit
814d96a0创建于 2022年8月15日历史提交
#!/bin/sh
# Helper script to provide legacy auditd service options not
# directly supported by systemd.

test -f /etc/audit/auditd.conf  || exit 6

/usr/libexec/initscripts/legacy-actions/auditd/stop
sleep 1
echo "Redirecting start to /bin/systemctl start auditd.service"
/bin/systemctl start auditd.service
RETVAL="$?"

exit $RETVAL