auto revision 220088
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 220088 2011-03-28 02:37:05Z nwhitehorn $
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
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=`bsdinstall 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
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_unionfs "$BSDINSTALL_FETCHDEST" "$BSDINSTALL_DISTDIR"
131	fi
132
133	# Otherwise, fetch everything
134	if [ $? -ne 0 ]; then
135		export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
136		export BSDINSTALL_DISTDIR="$BSDINSTALL_FETCHDEST"
137	fi
138		
139	bsdinstall distfetch || error
140	export DISTRIBUTIONS="$ALL_DISTRIBUTIONS"
141fi
142
143error
144
145bsdinstall checksum || error
146bsdinstall distextract || error
147bsdinstall rootpass || error
148
149trap true SIGINT	# This section is optional
150if [ "$NETCONFIG_DONE" != yes ]; then
151	bsdinstall netconfig	# Don't check for errors -- the user may cancel
152fi
153bsdinstall time
154bsdinstall services
155
156dialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \
157    "Would you like to add users to the installed system now?" 0 0 && \
158    bsdinstall adduser
159
160finalconfig() {
161	exec 3>&1
162	REVISIT=$(dialog --backtitle "FreeBSD Installer" \
163	    --title "Final Configuration" --no-cancel --menu \
164	    "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 \
165		"Add User" "Add a user to the system" \
166		"Root Password" "Change root password" \
167		"Hostname" "Set system hostname" \
168		"Network" "Networking configuration" \
169		"Services" "Set daemons to run on startup" \
170		"Time Zone" "Set system timezone" \
171		"Shell" "Open a shell in the new system" \
172		"Reboot" "Apply configuration and reboot" 2>&1 1>&3)
173	exec 3>&-
174
175	case "$REVISIT" in
176	"Add User")
177		bsdinstall adduser
178		finalconfig
179		;;
180	"Root Password")
181		bsdinstall rootpass 
182		finalconfig
183		;;
184	"Hostname")
185		bsdinstall hostname
186		finalconfig
187		;;
188	"Network")
189		bsdinstall netconfig
190		finalconfig
191		;;
192	"Services")
193		bsdinstall services
194		finalconfig
195		;;
196	"Time Zone")
197		bsdinstall time
198		finalconfig
199		;;
200	"Shell")
201		clear
202		echo This shell is operating in a chroot in the new system. \
203		    When finished making configuration changes, type \"exit\".
204		chroot "$BSDINSTALL_CHROOT" /bin/sh
205		# Don't hose local rc.conf changes
206		cp $BSDINSTALL_CHROOT/etc/rc.conf $BSDINSTALL_TMPETC/rc.conf.manual
207		finalconfig
208		;;
209	esac
210}
211
212# Allow user to change his mind
213finalconfig
214
215trap error SIGINT	# SIGINT is bad again
216bsdinstall config  || error
217
218if [ ! -z "$BSDINSTALL_FETCHDEST" ]; then
219	[ "$BSDINSTALL_FETCHDEST" != "$BSDINSTALL_DISTDIR" ] && \
220	    umount "$BSDINSTALL_DISTDIR"
221	rm -rf "$BSDINSTALL_FETCHDEST"
222fi
223
224echo "Installation Completed at $(date)" >> $BSDINSTALL_LOG
225
226