summaryrefslogtreecommitdiff
path: root/rc/bin/inst/configfs
blob: 04ae55ee6003453b24878605566dd62d076aac86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/rc

# desc: choose the type of file system to install

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

case go
	echo 'You can install the following types of file systems:'
	echo
	echo '	cwfs	the cached-worm file server'
	echo
	prompt -d fossil 'File system' cwfs
	fstype=$rd
	export fstype
}