* Package now manages /etc/network.conf via usher * Added man page and ifup symlinks * Updated network init script
21 lines
273 B
Bash
Executable File
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
|