Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/lib/dist/pc/inst/stopether – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#!/bin/rc
2
 
3
# desc: shut down the ethernet connection
4
# prereq:
5
 
6
 
7
switch($1) {
8
case checkready
9
	if(! isipdevup /net/ether0) {
10
		stopether=notdone
11
		export stopether
12
	}
13
 
14
case go
15
	ip/ipconfig ether /net/ether0 unbind
16
 
17
case checkdone
18
	stopether=notdone
19
	export stopether
20
}