xref: /freebsd/usr.sbin/bsdinstall/scripts/jail (revision 6f4c1456b51dc35c03b2c02cc06e8b4308779855)
12118f387SNathan Whitehorn#!/bin/sh
22118f387SNathan Whitehorn#-
32118f387SNathan Whitehorn# Copyright (c) 2011 Nathan Whitehorn
40705286bSDevin Teske# Copyright (c) 2013-2015 Devin Teske
52118f387SNathan Whitehorn# All rights reserved.
62118f387SNathan Whitehorn#
72118f387SNathan Whitehorn# Redistribution and use in source and binary forms, with or without
82118f387SNathan Whitehorn# modification, are permitted provided that the following conditions
92118f387SNathan Whitehorn# are met:
102118f387SNathan Whitehorn# 1. Redistributions of source code must retain the above copyright
112118f387SNathan Whitehorn#    notice, this list of conditions and the following disclaimer.
122118f387SNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright
132118f387SNathan Whitehorn#    notice, this list of conditions and the following disclaimer in the
142118f387SNathan Whitehorn#    documentation and/or other materials provided with the distribution.
152118f387SNathan Whitehorn#
162118f387SNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
172118f387SNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
182118f387SNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
192118f387SNathan Whitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
202118f387SNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
212118f387SNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
222118f387SNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
232118f387SNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
242118f387SNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
252118f387SNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
262118f387SNathan Whitehorn# SUCH DAMAGE.
272118f387SNathan Whitehorn#
282118f387SNathan Whitehorn# $FreeBSD$
29bc4a673fSDevin Teske#
30bc4a673fSDevin Teske############################################################ INCLUDES
312118f387SNathan Whitehorn
32bc4a673fSDevin TeskeBSDCFG_SHARE="/usr/share/bsdconfig"
33bc4a673fSDevin Teske. $BSDCFG_SHARE/common.subr || exit 1
34bc4a673fSDevin Teske
35bc4a673fSDevin Teske############################################################ MAIN
36bc4a673fSDevin Teske
37bc4a673fSDevin Teskef_dprintf "Began Installation at %s" "$( date )"
382118f387SNathan Whitehornexport BSDINSTALL_CHROOT=$1
392118f387SNathan Whitehorn
402118f387SNathan Whitehornerror() {
417041a67eSAndrew Thompson	local msg
427041a67eSAndrew Thompson	if [ -n "$1" ]; then
437041a67eSAndrew Thompson		msg="$1\n\n"
447041a67eSAndrew Thompson	fi
452118f387SNathan Whitehorn	dialog --backtitle "FreeBSD Installer" --title "Abort" \
462118f387SNathan Whitehorn	    --no-label "Exit" --yes-label "Restart" --yesno \
477041a67eSAndrew Thompson	    "${msg}An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0
482118f387SNathan Whitehorn	if [ $? -ne 0 ]; then
492118f387SNathan Whitehorn		exit
502118f387SNathan Whitehorn	else
51e7c52918SNathan Whitehorn		exec $0 $BSDINSTALL_CHROOT
522118f387SNathan Whitehorn	fi
532118f387SNathan Whitehorn}
542118f387SNathan Whitehorn
552118f387SNathan Whitehornrm -rf $BSDINSTALL_TMPETC
562118f387SNathan Whitehornmkdir $BSDINSTALL_TMPETC
577041a67eSAndrew Thompsonmkdir -p $1 || error "mkdir failed for $1"
582118f387SNathan Whitehorn
59*6f4c1456Seoli3nif [ -n "$SCRIPT" ]
60*6f4c1456Seoli3nthen
61*6f4c1456Seoli3n        split -a 2 -p '^#!.*' "$SCRIPT" $TMPDIR/bsdinstall-installscript-
62*6f4c1456Seoli3n        . $TMPDIR/bsdinstall-installscript-aa
63*6f4c1456Seoli3nfi
64*6f4c1456Seoli3n
65e7c52918SNathan Whitehorntest ! -d $BSDINSTALL_DISTDIR && mkdir -p $BSDINSTALL_DISTDIR
66e7c52918SNathan Whitehorn
67e7c52918SNathan Whitehornif [ ! -f $BSDINSTALL_DISTDIR/MANIFEST -a -z "$BSDINSTALL_DISTSITE" ]; then
68e7c52918SNathan Whitehorn	exec 3>&1
6926976226SNathan Whitehorn	BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&3)
70e7c52918SNathan Whitehorn	MIRROR_BUTTON=$?
71e7c52918SNathan Whitehorn	exec 3>&-
727041a67eSAndrew Thompson	test $MIRROR_BUTTON -eq 0 || error "No mirror selected"
73e7c52918SNathan Whitehorn	export BSDINSTALL_DISTSITE
747041a67eSAndrew Thompson	fetch -o $BSDINSTALL_DISTDIR/MANIFEST $BSDINSTALL_DISTSITE/MANIFEST || error "Could not download $BSDINSTALL_DISTSITE/MANIFEST"
75e7c52918SNathan Whitehornfi
76e7c52918SNathan Whitehorn
77*6f4c1456Seoli3n: ${DISTRIBUTIONS="base.txz"}; export DISTRIBUTIONS
78e7c52918SNathan Whitehornif [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
79e7c52918SNathan Whitehorn	DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base`
80e7c52918SNathan Whitehorn
81*6f4c1456Seoli3n    if [ ! "$nonInteractive" == "YES" ]
82*6f4c1456Seoli3n    then
83e7c52918SNathan Whitehorn	    exec 3>&1
84e7c52918SNathan Whitehorn	    EXTRA_DISTS=$(echo $DISTMENU | xargs dialog \
85e7c52918SNathan Whitehorn	        --backtitle "FreeBSD Installer" \
86e7c52918SNathan Whitehorn	        --title "Distribution Select" --nocancel --separate-output \
87e7c52918SNathan Whitehorn	        --checklist "Choose optional system components to install:" \
88e7c52918SNathan Whitehorn	        0 0 0 \
89e7c52918SNathan Whitehorn	    2>&1 1>&3)
90e7c52918SNathan Whitehorn	    for dist in $EXTRA_DISTS; do
91e7c52918SNathan Whitehorn	    	export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
92e7c52918SNathan Whitehorn	    done
93e7c52918SNathan Whitehorn    fi
94*6f4c1456Seoli3nfi
952118f387SNathan Whitehorn
962118f387SNathan WhitehornFETCH_DISTRIBUTIONS=""
972118f387SNathan Whitehornfor dist in $DISTRIBUTIONS; do
982118f387SNathan Whitehorn	if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
992118f387SNathan Whitehorn		FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
1002118f387SNathan Whitehorn	fi
1012118f387SNathan Whitehorndone
102e7c52918SNathan WhitehornFETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS`	# Trim white space
1032118f387SNathan Whitehorn
104e7c52918SNathan Whitehornif [ -n "$FETCH_DISTRIBUTIONS" -a -z "$BSDINSTALL_DISTSITE" ]; then
105e7c52918SNathan Whitehorn	exec 3>&1
106e7c52918SNathan Whitehorn	BSDINSTALL_DISTSITE=`bsdinstall mirrorselect 2>&1 1>&3`
107e7c52918SNathan Whitehorn	MIRROR_BUTTON=$?
108e7c52918SNathan Whitehorn	exec 3>&-
1097041a67eSAndrew Thompson	test $MIRROR_BUTTON -eq 0 || error "No mirror selected"
110e7c52918SNathan Whitehorn	export BSDINSTALL_DISTSITE
1112118f387SNathan Whitehornfi
1122118f387SNathan Whitehorn
113e7c52918SNathan Whitehornif [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
1147041a67eSAndrew Thompson	bsdinstall distfetch || error "Failed to fetch distribution"
115e7c52918SNathan Whitehornfi
116e7c52918SNathan Whitehorn
1177041a67eSAndrew Thompsonbsdinstall checksum || error "Distribution checksum failed"
1187041a67eSAndrew Thompsonbsdinstall distextract || error "Distribution extract failed"
119*6f4c1456Seoli3n
120*6f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ]
121*6f4c1456Seoli3nthen
1227041a67eSAndrew Thompson    bsdinstall rootpass || error "Could not set root password"
123*6f4c1456Seoli3nfi
1242118f387SNathan Whitehorn
1252118f387SNathan Whitehorntrap true SIGINT	# This section is optional
126*6f4c1456Seoli3n
127*6f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ]
128*6f4c1456Seoli3nthen
1292118f387SNathan Whitehornbsdinstall services
1302118f387SNathan Whitehorn
1312118f387SNathan Whitehorn    dialog --backtitle "FreeBSD Installer" --title "Add User Accounts" --yesno \
1322118f387SNathan Whitehorn        "Would you like to add users to the installed system now?" 0 0 && \
1332118f387SNathan Whitehorn        bsdinstall adduser
134*6f4c1456Seoli3nfi
1352118f387SNathan Whitehorn
1362118f387SNathan Whitehorntrap error SIGINT	# SIGINT is bad again
1377041a67eSAndrew Thompsonbsdinstall config  || error "Failed to save config"
138e7c52918SNathan Whitehorncp /etc/resolv.conf $1/etc
139e7c52918SNathan Whitehorncp /etc/localtime $1/etc
1402118f387SNathan Whitehorn
141*6f4c1456Seoli3n# Run post-install script
142*6f4c1456Seoli3nif [ -f $TMPDIR/bsdinstall-installscript-ab ]; then
143*6f4c1456Seoli3n	cp $TMPDIR/bsdinstall-installscript-ab $BSDINSTALL_CHROOT/tmp/installscript
144*6f4c1456Seoli3n	chmod a+x $BSDINSTALL_CHROOT/tmp/installscript
145*6f4c1456Seoli3n	mount -t devfs devfs "$BSDINSTALL_CHROOT/dev"
146*6f4c1456Seoli3n	chroot $BSDINSTALL_CHROOT /tmp/installscript $@ 2>&1
147*6f4c1456Seoli3n	umount "$BSDINSTALL_CHROOT/dev"
148*6f4c1456Seoli3n	rm $BSDINSTALL_CHROOT/tmp/installscript
149*6f4c1456Seoli3nfi
150*6f4c1456Seoli3n
151dfc23ba5SDag-Erling Smørgravbsdinstall entropy
152dfc23ba5SDag-Erling Smørgrav
153bc4a673fSDevin Teskef_dprintf "Installation Completed at %s" "$(date)"
1540705286bSDevin Teskeexit $SUCCESS
1552118f387SNathan Whitehorn
156bc4a673fSDevin Teske################################################################################
157bc4a673fSDevin Teske# END
158bc4a673fSDevin Teske################################################################################
159