Files
procps-ng/SNAP/usher
Jay Larson 8f9a0093ee The following changes were made:
* REPO added to Makefile
  * usher now uses /bin/sh
  * Removed TARGET from usher
2018-03-29 12:46:07 -05:00

21 lines
243 B
Bash
Executable File

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