plan9fox/sys/lib/dist.old/pc/inst/stopether
cinap_lenrek 45bab89362 livecd
2011-04-11 19:47:05 +00:00

21 lines
269 B
Bash
Executable file

#!/bin/rc
# desc: shut down the ethernet connection
# prereq:
switch($1) {
case checkready
if(! isipdevup /net/ether0) {
stopether=notdone
export stopether
}
case go
ip/ipconfig ether /net/ether0 unbind
case checkdone
stopether=notdone
export stopether
}