#!/nix/store/izpf49b74i15pcr9708s3xdwyqs4jxwl-bash-5.2p32/bin/sh
# Helper script to provide legacy auditd service options not 
# directly supported by systemd

# Check that we are root ... so non-root users stop here
test $(id -u) = 0  ||  exit 4

printf "Reconfiguring auditd: "
/sbin/auditctl --signal reload
RETVAL=$?
echo
exit $RETVAL
