inst.profile revision 1.1 1 # $NetBSD: inst.profile,v 1.1 2013/03/19 22:16:53 garbled Exp $
2
3 PATH=/sbin:/bin:/usr/bin:/usr/sbin:/
4 export PATH
5 TERM=vt100
6 export TERM
7 HOME=/
8 export HOME
9
10 umask 022
11
12 if [ "X${DONEPROFILE}" = "X" ]; then
13 DONEPROFILE=YES
14 export DONEPROFILE
15
16 # set up some sane defaults
17 echo 'erase ^H, werase ^W, kill ^U, intr ^C'
18 stty newcrt werase ^W intr ^C kill ^U erase ^H
19 echo ''
20
21 # run the installation or upgrade script.
22 echo "starting sysinst!"
23 cd /
24 /sysinst
25 echo "If you have completed your install, please reboot"
26 echo "into your new OS, otherwise, run sysinst again."
27 fi
28