summaryrefslogtreecommitdiff
path: root/sys/lib/dist.old/pc/inst/configfs
blob: 81f82897ccfe461f0db085cf257374d246005db7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/rc

# desc: choose the type of file system to install

switch($1){
case checkdone
	if(! ~ $fstype fossil fossil+venti){
		configfs=ready
		export configfs
	}

case go
	echo 'You can install the following types of file systems:'
	echo
	echo '	fossil			the new Plan9 fileserver'
	echo '	fossil+venti	fossil + a archival dump server'
	echo
	prompt -d fossil 'File system' fossil fossil+venti
	fstype=$rd
	export fstype
}