Files
initscripts/SNAP/usher
Jay Larson 843c8721f1 The following changes were made:
* Configuration moved to new CONFIG directory to separate from usher
  * Made various improvements to most init scripts
  * Added dependency to perl for update-rc
2018-07-28 14:30:08 -05:00

19 lines
161 B
Bash
Executable File

#!/bin/sh
set -e
case $1 in
preinst)
exit 0
;;
postinst)
update-rc required
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac