]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/bsdinstall/scripts/auto
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / bsdinstall / scripts / auto
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$
28
29 echo "Begun Installation at $(date)" > $BSDINSTALL_LOG
30
31 error() {
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
45 rm -rf $BSDINSTALL_TMPETC
46 mkdir $BSDINSTALL_TMPETC
47
48 trap true SIGINT        # This section is optional
49 bsdinstall keymap
50
51 trap error SIGINT       # Catch cntrl-C here
52 bsdinstall hostname || error
53
54 export DISTRIBUTIONS="base.txz kernel.txz"
55 if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
56         DISTMENU=`awk -F'\t' '!/^(kernel|base)/{print $4,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST`
57
58         exec 3>&1
59         EXTRA_DISTS=$( eval dialog \
60             --backtitle \"FreeBSD Installer\" \
61             --title \"Distribution Select\" --nocancel --separate-output \
62             --checklist \"Choose optional system components to install:\" \
63             0 0 0 $DISTMENU \
64         2>&1 1>&3 )
65         for dist in $EXTRA_DISTS; do
66                 export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
67         done
68 fi
69
70 FETCH_DISTRIBUTIONS=""
71 for dist in $DISTRIBUTIONS; do
72         if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
73                 FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
74         fi
75 done
76 FETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS` # Trim white space
77
78 if [ -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
82 fi
83
84 if [ -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
91 fi
92
93 rm $PATH_FSTAB
94 touch $PATH_FSTAB
95
96 dialog --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
100 case $? in
101 0)      # Guided
102         bsdinstall autopart || error
103         bsdinstall mount || error
104         ;;
105 1)      # 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         ;;
110 3)      # Manual
111         bsdinstall partedit || error
112         bsdinstall mount || error
113         ;;
114 *)
115         error
116         ;;
117 esac
118
119 if [ ! -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"
139 fi
140
141 bsdinstall checksum || error
142 bsdinstall distextract || error
143 bsdinstall rootpass || error
144
145 trap true SIGINT        # This section is optional
146 if [ "$NETCONFIG_DONE" != yes ]; then
147         bsdinstall netconfig    # Don't check for errors -- the user may cancel
148 fi
149 bsdinstall time
150 bsdinstall services
151
152 dialog --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
156 finalconfig() {
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. After this screen, you will have an opportunity to make 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)" 2>&1 1>&3)
169         exec 3>&-
170
171         case "$REVISIT" in
172         "Add User")
173                 bsdinstall adduser
174                 finalconfig
175                 ;;
176         "Root Password")
177                 bsdinstall rootpass 
178                 finalconfig
179                 ;;
180         "Hostname")
181                 bsdinstall hostname
182                 finalconfig
183                 ;;
184         "Network")
185                 bsdinstall netconfig
186                 finalconfig
187                 ;;
188         "Services")
189                 bsdinstall services
190                 finalconfig
191                 ;;
192         "Time Zone")
193                 bsdinstall time
194                 finalconfig
195                 ;;
196         "Handbook")
197                 bsdinstall docsinstall
198                 finalconfig
199                 ;;
200         esac
201 }
202
203 # Allow user to change his mind
204 finalconfig
205
206 trap error SIGINT       # SIGINT is bad again
207 bsdinstall config  || error
208
209 if [ ! -z "$BSDINSTALL_FETCHDEST" ]; then
210         [ "$BSDINSTALL_FETCHDEST" != "$BSDINSTALL_DISTDIR" ] && \
211             umount "$BSDINSTALL_DISTDIR"
212         rm -rf "$BSDINSTALL_FETCHDEST"
213 fi
214
215 dialog --backtitle "FreeBSD Installer" --title "Manual Configuration" \
216     --yesno "The installation is now finished. Before exiting the installer, would you like to open a shell in the new system to make any final manual modifications?" 0 0
217 if [ $? -eq 0 ]; then
218         clear
219         mount -t devfs devfs "$BSDINSTALL_CHROOT/dev"
220         echo This shell is operating in a chroot in the new system. \
221             When finished making configuration changes, type \"exit\".
222         chroot "$BSDINSTALL_CHROOT" /bin/sh 2>&1
223 fi
224
225 echo "Installation Completed at $(date)" >> $BSDINSTALL_LOG
226