Files
spl/SNAP/usher
Jay Larson 0b8e66fec4 The following changes were made:
* Added REPO
  * usher now uses /bin/sh
  * Removed TARGET from usher
2018-04-06 13:25:49 -05:00

19 lines
149 B
Bash
Executable File

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