#!/bin/sh
# Helper script to provide legacy auditd service options not
# directly supported by systemd.

test $(id -u) = 0  ||  exit 4

/usr/libexec/service/legacy-actions/auditd/stop
echo "Redirecting start to 'service auditd start'"
service auditd start
RETVAL="$?"

exit $RETVAL
