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

test -f /etc/audit/ksl-daemon.conf  || exit 6

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

exit $RETVAL
