The following changes were made:

* REPO added to Makefile
  * usher now uses /bin/sh
  * Removed TARGET from usher
This commit is contained in:
2018-03-29 12:46:07 -05:00
parent 0095f3d0cd
commit 8f9a0093ee
2 changed files with 5 additions and 4 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/sysctl.conf ]; then
cp ${TARGET}/usr/share/procps-ng/sysctl.conf ${TARGET}/etc/sysctl.conf
if [ ! -f /etc/sysctl.conf ]; then
cp /usr/share/procps-ng/sysctl.conf /etc/sysctl.conf
fi
;;
prerm)