wok-4.x view busybox/stuff/zcip.script @ rev 3579

emesene: update DEPENDS, remove host.patch(not needed). gajim: update DEPENDS
author Liu Peng <rocky@slitaz.org>
date Fri Jun 26 13:49:19 2009 +0000 (2009-06-26)
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