wok view busybox/stuff/zcip.script @ rev 14920

Up: firefox-langpack-pt_BR (17.0.7esr)
author Richard Dunbar <mojo@slitaz.org>
date Tue Aug 06 01:24:03 2013 +0000 (2013-08-06)
parents 72fa50265748
children
line source
1 #!/bin/sh
3 [ "$1" = "init" ] && exit 0
4 [ -n "$ip" ] || exit 1
5 case "$1" in
6 config) ifconfig $interface $ip netmask 255.255.0.0 up
7 for i in /etc/ipup.d/*; do
8 [ -e $i ] && . $i $interface $ip
9 done
10 ;;
11 deconfig) ifconfig $interface down
12 for i in /etc/ipdown.d/*; do
13 [ -e $i ] && . $i $interface
14 done
15 ;;
16 *) exit 1;;
17 esac