Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | 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