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

state=`service auditd status | awk '/^   Active/ { print $2 }'`
if [ $state = "active" ] ; then
	/usr/libexec/initscripts/legacy-actions/auditd/restart
	RETVAL="$?"
	exit $RETVAL
fi
exit 0