diff options
Diffstat (limited to 'rc/bin/inst/configfs')
-rwxr-xr-x | rc/bin/inst/configfs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/rc/bin/inst/configfs b/rc/bin/inst/configfs index 04ae55ee6..a0eea4838 100755 --- a/rc/bin/inst/configfs +++ b/rc/bin/inst/configfs @@ -4,19 +4,18 @@ switch($1){ case checkdone - if(! ~ $fstype cwfs){ + if(~ $#fstype 1 && test -f /bin/$fstype) + configfs=done + if not configfs=ready - export configfs - } + export configfs case go echo 'You can install the following types of file systems:' echo - echo ' cwfs the cached-worm file server' + echo ' cwfs64x the cached-worm file server' echo - prompt -d fossil 'File system' cwfs + prompt -d cwfs64x 'File system' cwfs64x fstype=$rd export fstype } - - |