blob: 3e99bea0d0298ca27b2021b776fd7ebc29ac2c0c (
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
# prereq: mountfs
# desc: choose the source of the distribution archive
switch($1){
case checkdone
if(! ~ $distisfrom net local){
configdist=ready
export configdist
}
case go
echo 'Are you going to download the distribution'
echo 'from the internet or do you have it on local media?'
echo
prompt -d local 'Distribution is from' local net
distisfrom=$rd
export distisfrom
}
|