You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
156 B
13 lines
156 B
8 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# simplest possible ifplugd script ;-)
|
||
|
#
|
||
7 years ago
|
|
||
6 years ago
|
. /etc/init.d/globals
|
||
7 years ago
|
|
||
8 years ago
|
case $2 in
|
||
6 years ago
|
up) ifup $1 | LOGINFO ;;
|
||
|
down) ifdown $1 | LOGINFO ;;
|
||
8 years ago
|
esac
|
||
|
true
|