xref: /freebsd/release/rc.local (revision a2464ee12761660f50d0b6f59f233949ebcacc87)
1#!/bin/sh
2# $FreeBSD$
3
4: ${BSDDIALOG_OK=0}
5: ${BSDDIALOG_CANCEL=1}
6: ${BSDDIALOG_HELP=2}
7: ${BSDDIALOG_EXTRA=3}
8: ${BSDDIALOG_ESC=5}
9: ${BSDDIALOG_ERROR=255}
10
11# resolv.conf from DHCP ends up in here, so make sure the directory exists
12mkdir /tmp/bsdinstall_etc
13
14kbdcontrol -d >/dev/null 2>&1
15if [ $? -eq 0 ]; then
16	# Syscons: use xterm, start interesting things on other VTYs
17	TERM=xterm
18
19	# Don't send ESC on function-key 62/63 (left/right command key)
20	kbdcontrol -f 62 '' > /dev/null 2>&1
21	kbdcontrol -f 63 '' > /dev/null 2>&1
22
23	if [ -z "$EXTERNAL_VTY_STARTED" ]; then
24		# Init will clean these processes up if/when the system
25		# goes multiuser
26		touch /tmp/bsdinstall_log
27		tail -f /tmp/bsdinstall_log > /dev/ttyv2 &
28		/usr/libexec/getty autologin ttyv3 &
29		EXTERNAL_VTY_STARTED=1
30	fi
31else
32	# Serial or other console
33	echo
34	echo "Welcome to FreeBSD!"
35	echo
36	echo "Please choose the appropriate terminal type for your system."
37	echo "Common console types are:"
38	echo "   ansi     Standard ANSI terminal"
39	echo "   vt100    VT100 or compatible terminal"
40	echo "   xterm    xterm terminal emulator (or compatible)"
41	echo
42	echo -n "Console type [vt100]: "
43	read TERM
44	TERM=${TERM:-vt100}
45fi
46export TERM
47
48# Query terminal size; useful for serial lines.
49resizewin -z
50
51if [ -f /etc/installerconfig ]; then
52	if bsdinstall script /etc/installerconfig; then
53		bsddialog --backtitle "FreeBSD Installer" --title "Complete" --no-cancel --ok-label "Reboot" --pause "Installation of FreeBSD complete! Rebooting in 10 seconds" 10 30 10
54		reboot
55	else
56		bsddialog --backtitle "FreeBSD Installer" --title "Error" --textbox /tmp/bsdinstall_log 0 0
57	fi
58	exit
59fi
60
61bsddialog --backtitle "FreeBSD Installer" --title "Welcome" --extra-button --extra-label "Shell" --ok-label "Install" --cancel-label "Live CD" --yesno "Welcome to FreeBSD! Would you like to begin an installation or use the live CD?" 0 0
62
63case $? in
64$BSDDIALOG_OK)	# Install
65	# If not netbooting, have the installer configure the network
66	dlv=`/sbin/sysctl -n vfs.nfs.diskless_valid 2> /dev/null`
67	if [ ${dlv:=0} -eq 0 -a ! -f /etc/diskless ]; then
68		BSDINSTALL_CONFIGCURRENT=yes; export BSDINSTALL_CONFIGCURRENT
69	fi
70
71	trap true SIGINT	# Ignore cntrl-C here
72	bsdinstall
73	if [ $? -eq 0 ]; then
74		bsddialog --backtitle "FreeBSD Installer" --title "Complete" --ok-label "Reboot" --extra-button --extra-label "Shutdown" --cancel-label "Live CD" --yesno "Installation of FreeBSD complete! Would you like to reboot into the installed system now?" 0 0
75
76		case $? in
77		$BSDDIALOG_OK)		# Reboot
78			reboot
79			;;
80		$BSDDIALOG_EXTRA)	# Shutdown
81			shutdown -p now
82			;;
83		$BSDDIALOG_CANCEL)	# Live CD
84			exit 0
85			;;
86		esac
87	else
88		. /etc/rc.local
89	fi
90	;;
91$BSDDIALOG_CANCEL)	# Live CD
92	exit 0
93	;;
94$BSDDIALOG_EXTRA)	# Shell
95	clear
96	echo "When finished, type 'exit' to return to the installer."
97	/bin/sh
98	. /etc/rc.local
99	;;
100esac
101
102