2011-03-30 13:53:33 +00:00
|
|
|
#!/bin/rc
|
|
|
|
|
|
|
|
# desc: finish the installation and reboot
|
|
|
|
# prereq: bootsetup
|
|
|
|
# mustdo:
|
|
|
|
|
|
|
|
switch($1) {
|
|
|
|
case checkdone
|
|
|
|
finish=ready
|
|
|
|
export finish
|
|
|
|
|
|
|
|
case go
|
2011-05-09 22:56:02 +00:00
|
|
|
echo 'Congratulations; you''ve completed the install.'
|
|
|
|
echo
|
2017-08-04 12:17:29 +00:00
|
|
|
fshalt -r
|
|
|
|
while(){}
|
2011-03-30 13:53:33 +00:00
|
|
|
}
|