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_fixcpp/sys/lib/dist/pc/inst/configdist – 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
# prereq: mountfs
4
# desc: choose the source of the distribution archive
5
 
6
switch($1){
7
case checkdone
8
	if(! ~ $distisfrom net local){
9
		configdist=ready
10
		export configdist
11
	}
12
 
13
case go
14
	echo 'Are you going to download the distribution'
15
	echo 'from the internet or do you have it on local media?'
16
	echo
17
	prompt -d local 'Distribution is from' local net
18
	distisfrom=$rd
19
	export distisfrom
20
}
21
 
22