Files
iftools/SNAP/usher
Jay Larson 508121866c The following changes were made:
* Added dash as dependency
  * Added URL
  * Added REPO
  * Moved usher from bash to /bin/sh
  * Removed TARGET from usher
  * Tweaked SRC Makefile to work with /bin/sh
2018-03-27 09:17:00 -05:00

21 lines
244 B
Bash
Executable File

#!/bin/sh
set -e
case $1 in
preinst)
exit 0
;;
postinst)
if [ ! -f /etc/network.conf ]; then
cp /usr/share/iftools/network.conf /etc/network.conf
fi
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac