Files
iftools/SNAP/usher
Jay Larson 53077da060 The following changes were made:
* Package now manages /etc/network.conf via usher
  * Added man page and ifup symlinks
  * Updated network init script
2017-05-16 14:36:54 -05:00

21 lines
273 B
Bash
Executable File

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