First check in

This commit is contained in:
2018-06-04 16:59:38 -05:00
commit f23031c8e3
9 changed files with 7081 additions and 0 deletions

21
SNAP/usher Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
set -e
case $1 in
preinst)
exit 0
;;
postinst)
[ -f "/run/cron.pid" ] && /etc/init.d/cron restart
[ -f "/etc/crontab" ] || cp /usr/share/cron/crontab /etc/crontab
exit 0
;;
prerm)
[ -f "/run/cron.pid" ] && /etc/init.d/cron stop
exit 0
;;
postrm)
exit 0
;;
esac