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/planix-v0/sys/lib/dist/pc/inst/configfs – 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
# 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