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
# desc: choose the type of file system to install
4
 
5
switch($1){
6
case checkdone
7
	if(! ~ $fstype fossil fossil+venti){
8
		configfs=ready
9
		export configfs
10
	}
11
 
12
case go
13
	echo 'You can install the following types of file systems:'
14
	echo
15
	echo '	fossil			the new Plan9 fileserver'
16
	echo '	fossil+venti	fossil + a archival dump server'
17
	echo
18
	prompt -d fossil 'File system' fossil fossil+venti
19
	fstype=$rd
20
	export fstype
21
}
22
 
23