* 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
21 lines
244 B
Bash
Executable File
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
|