1# $NetBSD: inst.profile,v 1.1 2013/03/19 22:16:53 garbled Exp $ 2 3PATH=/sbin:/bin:/usr/bin:/usr/sbin:/ 4export PATH 5TERM=vt100 6export TERM 7HOME=/ 8export HOME 9 10umask 022 11 12if [ "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." 27fi 28