18 lines
225 B
Text
18 lines
225 B
Text
|
#!/bin/rc
|
||
|
|
||
|
# desc: save the current installation state, to be resumed later
|
||
|
# prereq:
|
||
|
# mustdo:
|
||
|
|
||
|
switch($1) {
|
||
|
case checkdone
|
||
|
stop=notdone
|
||
|
export stop
|
||
|
|
||
|
case checkready
|
||
|
if(~ $cdboot yes){
|
||
|
stop=notdone
|
||
|
export stop
|
||
|
}
|
||
|
}
|