Moved to slp format, also removed sysvinit dependency (unsure why it was there)

This commit is contained in:
2020-08-23 08:20:52 -05:00
parent b9d20d9c88
commit 92980232a6
5 changed files with 7 additions and 7 deletions

20
SL/usher Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
set -e
case $1 in
preinst)
exit 0
;;
postinst)
/etc/init.d/cron status 2>&1 > /dev/null && /etc/init.d/cron restart
exit 0
;;
prerm)
/etc/init.d/cron status 2>&1 > /dev/null && /etc/init.d/cron stop
exit 0
;;
postrm)
exit 0
;;
esac