]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/bsdinstall/scripts/jail
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / bsdinstall / scripts / jail
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 export BSDINSTALL_CHROOT=$1
31
32 error() {
33         dialog --backtitle "FreeBSD Installer" --title "Abort" \
34             --no-label "Exit" --yes-label "Restart" --yesno \
35             "An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0
36         if [ $? -ne 0 ]; then
37                 exit
38         else
39                 exec $0 $BSDINSTALL_CHROOT
40         fi
41 }
42
43
44 rm -rf $BSDINSTALL_TMPETC
45 mkdir $BSDINSTALL_TMPETC
46 mkdir -p $1 || error
47
48 test ! -d $BSDINSTALL_DISTDIR && mkdir -p $BSDINSTALL_DISTDIR
49
50 if [ ! -f $BSDINSTALL_DISTDIR/MANIFEST -a -z "$BSDINSTALL_DISTSITE" ]; then
51         exec 3>&1
52         BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&3)
53         MIRROR_BUTTON=$?
54         exec 3>&-
55         test $MIRROR_BUTTON -eq 0 || error
56         export BSDINSTALL_DISTSITE
57         fetch -o $BSDINSTALL_DISTDIR/MANIFEST $BSDINSTALL_DISTSITE/MANIFEST || error
58 fi
59
60 export DISTRIBUTIONS="base.txz"
61 if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
62         DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base`
63
64         exec 3>&1
65         EXTRA_DISTS=$(echo $DISTMENU | xargs dialog \
66             --backtitle "FreeBSD Installer" \
67             --title "Distribution Select" --nocancel --separate-output \
68             --checklist "Choose optional system components to install:" \
69             0 0 0 \
70         2>&1 1>&3)
71         for dist in $EXTRA_DISTS; do
72                 export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
73         done
74 fi
75
76 FETCH_DISTRIBUTIONS=""
77 for dist in $DISTRIBUTIONS; do
78         if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
79                 FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
80         fi
81 done
82 FETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS` # Trim white space
83
84 if [ -n "$FETCH_DISTRIBUTIONS" -a -z "$BSDINSTALL_DISTSITE" ]; 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
91 fi
92
93 if [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
94         bsdinstall distfetch || error
95 fi
96
97 bsdinstall checksum || error
98 bsdinstall distextract || error
99 bsdinstall rootpass || error
100
101 trap true SIGINT        # This section is optional
102 bsdinstall services
103
104 dialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \
105     "Would you like to add users to the installed system now?" 0 0 && \
106     bsdinstall adduser
107
108 trap error SIGINT       # SIGINT is bad again
109 bsdinstall config  || error
110 cp /etc/resolv.conf $1/etc
111 cp /etc/localtime $1/etc
112
113 echo "Installation Completed at $(date)" >> $BSDINSTALL_LOG
114