]> git.lizzy.rs Git - plan9front.git/blob - rc/bin/inst/configdist
crop /lib/face/48x48x8/n/nixie.1 to the right size (was 512x512)
[plan9front.git] / rc / bin / inst / configdist
1 #!/bin/rc
2
3 # prereq: mountfs
4 # desc: choose the source of the distribution archive
5
6 switch($1){
7 case checkdone
8         if(! ~ $distisfrom net local){
9                 configdist=ready
10                 export configdist
11         }
12
13 case go
14         echo 'Are you going to download the distribution'
15         echo 'from the internet or do you have it on local media?'
16         echo
17         prompt -d local 'Distribution is from' local net
18         distisfrom=$rd
19         export distisfrom
20 }
21
22