#!/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 PATH=/sbin:/bin:/usr/bin:/usr/sbin prog="auditd" . /etc/rc.d/init.d/functions printf "Resuming logging: " killproc $prog -USR2 RETVAL=$? echo exit $RETVAL