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
This commit is contained in:
2018-03-27 09:17:00 -05:00
parent 7793e4bc19
commit 508121866c
3 changed files with 9 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
set -e
@@ -7,8 +7,8 @@ case $1 in
exit 0
;;
postinst)
if [ ! -f ${TARGET}/etc/network.conf ]; then
cp ${TARGET}/usr/share/iftools/network.conf ${TARGET}/etc/network.conf
if [ ! -f /etc/network.conf ]; then
cp /usr/share/iftools/network.conf /etc/network.conf
fi
;;
prerm)