auto revision 226507
1#!/bin/sh
2#-
3# Copyright (c) 2011 Nathan Whitehorn
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions
8# are met:
9# 1. Redistributions of source code must retain the above copyright
10#    notice, this list of conditions and the following disclaimer.
11# 2. Redistributions in binary form must reproduce the above copyright
12#    notice, this list of conditions and the following disclaimer in the
13#    documentation and/or other materials provided with the distribution.
14#
15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25# SUCH DAMAGE.
26#
27# $FreeBSD: head/usr.sbin/bsdinstall/scripts/auto 226507 2011-10-18 11:29:10Z kensmith $
28
29echo "Begun Installation at $(date)" > $BSDINSTALL_LOG
30
31error() {
32	test -n "$DISTDIR_IS_UNIONFS" && umount -f $BSDINSTALL_DISTDIR
33	test -f $PATH_FSTAB && bsdinstall umount
34	dialog --backtitle "FreeBSD Installer" --title "Abort" \
35	    --no-label "Exit" --yes-label "Restart" --yesno \
36	    "An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0
37	if [ $? -ne 0 ]; then
38		exit 1
39	else
40		exec $0
41	fi
42}
43
44
45rm -rf $BSDINSTALL_TMPETC
46mkdir $BSDINSTALL_TMPETC
47
48trap true SIGINT	# This section is optional
49bsdinstall keymap
50
51trap error SIGINT	# Catch cntrl-C here
52bsdinstall hostname || error
53
54export DISTRIBUTIONS="base.txz kernel.txz"
55if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
56	DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base`
57
58	exec 3>&1
59	EXTRA_DISTS=$(echo $DISTMENU | xargs dialog \
60	    --backtitle "FreeBSD Installer" \
61	    --title "Distribution Select" --nocancel --separate-output \
62	    --checklist "Choose optional system components to install:" \
63	    0 0 0 \
64	2>&1 1>&3)
65	for dist in $EXTRA_DISTS; do
66		export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
67	done
68fi
69
70FETCH_DISTRIBUTIONS=""
71for dist in $DISTRIBUTIONS; do
72	if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
73		FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
74	fi
75done
76FETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS`	# Trim white space
77
78if [ -n "$FETCH_DISTRIBUTIONS" -a -n "$BSDINSTALL_CONFIGCURRENT" ]; then
79	dialog --backtitle "FreeBSD Installer" --title "Network Installation" --msgbox "No installation files were found on the boot volume. The next few screens will allow you to configure networking so that they can be downloaded from the Internet." 0 0
80	bsdinstall netconfig || error
81	NETCONFIG_DONE=yes
82fi
83
84if [ -n "$FETCH_DISTRIBUTIONS" ]; then
85	exec 3>&1
86	BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&3)
87	MIRROR_BUTTON=$?
88	exec 3>&-
89	test $MIRROR_BUTTON -eq 0 || error
90	export BSDINSTALL_DISTSITE
91fi
92
93rm $PATH_FSTAB
94touch $PATH_FSTAB
95
96dialog --backtitle "FreeBSD Installer" --title "Partitioning" --extra-button \
97    --extra-label "Manual" --ok-label "Guided" --cancel-label "Shell" \
98    --yesno "Would you like to use the guided partitioning tool (recommended for beginners) or to set up partitions manually (experts)? You can also open a shell and set up partitions entirely by hand." 0 0
99
100case $? in
1010)	# Guided
102	bsdinstall autopart || error
103	bsdinstall mount || error
104	;;
1051)	# Shell
106	clear
107	echo "Use this shell to set up partitions for the new system. When finished, mount the system at $BSDINSTALL_CHROOT and place an fstab file for the new system at $PATH_FSTAB. Then type 'exit'. You can also enter the partition editor at any time by entering 'bsdinstall partedit'."
108	sh 2>&1
109	;;
1103)	# Manual
111	bsdinstall partedit || error
112	bsdinstall mount || error
113	;;
114*)
115	error
116	;;
117esac
118
119if [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
120	ALL_DISTRIBUTIONS="$DISTRIBUTIONS"
121
122	# Download to a directory in the new system as scratch space
123	BSDINSTALL_FETCHDEST="$BSDINSTALL_CHROOT/usr/freebsd-dist"
124	mkdir -p "$BSDINSTALL_FETCHDEST" || error
125
126	export DISTRIBUTIONS="$FETCH_DISTRIBUTIONS"
127	# Try to use any existing distfiles
128	if [ -d $BSDINSTALL_DISTDIR ]; then
129		DISTDIR_IS_UNIONFS=1
130		mount_nullfs -o union "$BSDINSTALL_FETCHDEST" "$BSDINSTALL_DISTDIR"
131	else
132		export DISTRIBUTIONS="MANIFEST $ALL_DISTRIBUTIONS"
133		export BSDINSTALL_DISTDIR="$BSDINSTALL_FETCHDEST"
134	fi
135		
136	export FTP_PASSIVE_MODE=YES
137	bsdinstall distfetch || error
138	export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
139fi
140
141bsdinstall checksum || error
142bsdinstall distextract || error
143bsdinstall rootpass || error
144
145trap true SIGINT	# This section is optional
146if [ "$NETCONFIG_DONE" != yes ]; then
147	bsdinstall netconfig	# Don't check for errors -- the user may cancel
148fi
149bsdinstall time
150bsdinstall services
151
152dialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \
153    "Would you like to add users to the installed system now?" 0 0 && \
154    bsdinstall adduser
155
156finalconfig() {
157	exec 3>&1
158	REVISIT=$(dialog --backtitle "FreeBSD Installer" \
159	    --title "Final Configuration" --no-cancel --menu \
160	    "Setup of your FreeBSD system is nearly complete. You can now modify your configuration choices or apply more complex changes using a shell." 0 0 0 \
161		"Exit" "Apply configuration and exit installer" \
162		"Add User" "Add a user to the system" \
163		"Root Password" "Change root password" \
164		"Hostname" "Set system hostname" \
165		"Network" "Networking configuration" \
166		"Services" "Set daemons to run on startup" \
167		"Time Zone" "Set system timezone" \
168		"Handbook" "Install FreeBSD Handbook (requires network)" \
169		"Shell" "Open a shell in the new system" 2>&1 1>&3)
170	exec 3>&-
171
172	case "$REVISIT" in
173	"Add User")
174		bsdinstall adduser
175		finalconfig
176		;;
177	"Root Password")
178		bsdinstall rootpass 
179		finalconfig
180		;;
181	"Hostname")
182		bsdinstall hostname
183		finalconfig
184		;;
185	"Network")
186		bsdinstall netconfig
187		finalconfig
188		;;
189	"Services")
190		bsdinstall services
191		finalconfig
192		;;
193	"Time Zone")
194		bsdinstall time
195		finalconfig
196		;;
197	"Handbook")
198		bsdinstall docsinstall
199		finalconfig
200		;;
201	"Shell")
202		clear
203		echo This shell is operating in a chroot in the new system. \
204		    When finished making configuration changes, type \"exit\".
205		chroot "$BSDINSTALL_CHROOT" /bin/sh 2>&1
206		# Don't hose local rc.conf changes
207		cp $BSDINSTALL_CHROOT/etc/rc.conf $BSDINSTALL_TMPETC/rc.conf.manual
208		finalconfig
209		;;
210	esac
211}
212
213# Allow user to change his mind
214finalconfig
215
216trap error SIGINT	# SIGINT is bad again
217bsdinstall config  || error
218
219if [ ! -z "$BSDINSTALL_FETCHDEST" ]; then
220	[ "$BSDINSTALL_FETCHDEST" != "$BSDINSTALL_DISTDIR" ] && \
221	    umount "$BSDINSTALL_DISTDIR"
222	rm -rf "$BSDINSTALL_FETCHDEST"
223fi
224
225echo "Installation Completed at $(date)" >> $BSDINSTALL_LOG
226
227