xref: /freebsd/usr.sbin/bsdinstall/scripts/jail (revision b9cf989234d37a0885ee6228bcb6fa8f20f72b2f)
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#
28bc4a673fSDevin Teske#
29bc4a673fSDevin Teske############################################################ INCLUDES
302118f387SNathan Whitehorn
31bc4a673fSDevin TeskeBSDCFG_SHARE="/usr/share/bsdconfig"
32bc4a673fSDevin Teske. $BSDCFG_SHARE/common.subr || exit 1
33bc4a673fSDevin Teske
34bc4a673fSDevin Teske############################################################ MAIN
35bc4a673fSDevin Teske
364effc388SAlfonso S. Siciliano: ${BSDDIALOG_OK=0}
374effc388SAlfonso S. Siciliano
38bc4a673fSDevin Teskef_dprintf "Began Installation at %s" "$( date )"
392118f387SNathan Whitehorn
402118f387SNathan Whitehornerror() {
417041a67eSAndrew Thompson	local msg
427041a67eSAndrew Thompson	if [ -n "$1" ]; then
437041a67eSAndrew Thompson		msg="$1\n\n"
447041a67eSAndrew Thompson	fi
45cc42ef53SBrad Davis	bsddialog --backtitle "$OSNAME 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
484effc388SAlfonso S. Siciliano	if [ $? -ne $BSDDIALOG_OK ]; then
492118f387SNathan Whitehorn		exit
502118f387SNathan Whitehorn	else
5101ab86f7SPierre Pronchery		[ -z "$MIRROR_BUTTON" ] || unset BSDINSTALL_DISTSITE
52e7c52918SNathan Whitehorn		exec $0 $BSDINSTALL_CHROOT
532118f387SNathan Whitehorn	fi
542118f387SNathan Whitehorn}
552118f387SNathan Whitehorn
56*b9cf9892SFernando Apesteguíaif [ -z "$1" ]; then
57*b9cf9892SFernando Apesteguía	error "Directory can not be empty\n\nUsage:\nbsdinstall jail directory"
58*b9cf9892SFernando Apesteguíafi
59*b9cf9892SFernando Apesteguíaexport BSDINSTALL_CHROOT=$1
60*b9cf9892SFernando Apesteguía
612118f387SNathan Whitehornrm -rf $BSDINSTALL_TMPETC
622118f387SNathan Whitehornmkdir $BSDINSTALL_TMPETC
637041a67eSAndrew Thompsonmkdir -p $1 || error "mkdir failed for $1"
642118f387SNathan Whitehorn
656f4c1456Seoli3nif [ -n "$SCRIPT" ]
666f4c1456Seoli3nthen
676f4c1456Seoli3n        split -a 2 -p '^#!.*' "$SCRIPT" $TMPDIR/bsdinstall-installscript-
686f4c1456Seoli3n        . $TMPDIR/bsdinstall-installscript-aa
696f4c1456Seoli3nfi
706f4c1456Seoli3n
71e7c52918SNathan Whitehorntest ! -d $BSDINSTALL_DISTDIR && mkdir -p $BSDINSTALL_DISTDIR
72e7c52918SNathan Whitehorn
73e7c52918SNathan Whitehornif [ ! -f $BSDINSTALL_DISTDIR/MANIFEST -a -z "$BSDINSTALL_DISTSITE" ]; then
74c0e249d3SLars Kellogg-Stedman	exec 5>&1
75c0e249d3SLars Kellogg-Stedman	BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&5)
76e7c52918SNathan Whitehorn	MIRROR_BUTTON=$?
77c0e249d3SLars Kellogg-Stedman	exec 5>&-
787041a67eSAndrew Thompson	test $MIRROR_BUTTON -eq 0 || error "No mirror selected"
79e7c52918SNathan Whitehorn	export BSDINSTALL_DISTSITE
807041a67eSAndrew Thompson	fetch -o $BSDINSTALL_DISTDIR/MANIFEST $BSDINSTALL_DISTSITE/MANIFEST || error "Could not download $BSDINSTALL_DISTSITE/MANIFEST"
81e7c52918SNathan Whitehornfi
82e7c52918SNathan Whitehorn
836f4c1456Seoli3n: ${DISTRIBUTIONS="base.txz"}; export DISTRIBUTIONS
84e7c52918SNathan Whitehornif [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
85e7c52918SNathan Whitehorn	DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base`
86e7c52918SNathan Whitehorn
876f4c1456Seoli3n    if [ ! "$nonInteractive" == "YES" ]
886f4c1456Seoli3n    then
89c0e249d3SLars Kellogg-Stedman	    exec 5>&1
904effc388SAlfonso S. Siciliano	    EXTRA_DISTS=$(echo $DISTMENU | xargs -o bsddialog \
91cc42ef53SBrad Davis	        --backtitle "$OSNAME Installer" \
924effc388SAlfonso S. Siciliano	        --title "Distribution Select" --no-cancel --separate-output \
93e7c52918SNathan Whitehorn	        --checklist "Choose optional system components to install:" \
94e7c52918SNathan Whitehorn	        0 0 0 \
95c0e249d3SLars Kellogg-Stedman	    2>&1 1>&5)
96e7c52918SNathan Whitehorn	    for dist in $EXTRA_DISTS; do
97e7c52918SNathan Whitehorn	    	export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz"
98e7c52918SNathan Whitehorn	    done
99e7c52918SNathan Whitehorn    fi
1006f4c1456Seoli3nfi
1012118f387SNathan Whitehorn
1022118f387SNathan WhitehornFETCH_DISTRIBUTIONS=""
1032118f387SNathan Whitehornfor dist in $DISTRIBUTIONS; do
1042118f387SNathan Whitehorn	if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then
1052118f387SNathan Whitehorn		FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist"
1062118f387SNathan Whitehorn	fi
1072118f387SNathan Whitehorndone
108e7c52918SNathan WhitehornFETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS`	# Trim white space
1092118f387SNathan Whitehorn
110e7c52918SNathan Whitehornif [ -n "$FETCH_DISTRIBUTIONS" -a -z "$BSDINSTALL_DISTSITE" ]; then
111c0e249d3SLars Kellogg-Stedman	exec 5>&1
112c0e249d3SLars Kellogg-Stedman	BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&5)
113e7c52918SNathan Whitehorn	MIRROR_BUTTON=$?
114c0e249d3SLars Kellogg-Stedman	exec 5>&-
1157041a67eSAndrew Thompson	test $MIRROR_BUTTON -eq 0 || error "No mirror selected"
116e7c52918SNathan Whitehorn	export BSDINSTALL_DISTSITE
1172118f387SNathan Whitehornfi
1182118f387SNathan Whitehorn
119e7c52918SNathan Whitehornif [ ! -z "$FETCH_DISTRIBUTIONS" ]; then
1207041a67eSAndrew Thompson	bsdinstall distfetch || error "Failed to fetch distribution"
121e7c52918SNathan Whitehornfi
122e7c52918SNathan Whitehorn
1237041a67eSAndrew Thompsonbsdinstall checksum || error "Distribution checksum failed"
1247041a67eSAndrew Thompsonbsdinstall distextract || error "Distribution extract failed"
1256f4c1456Seoli3n
1266f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ]
1276f4c1456Seoli3nthen
1287041a67eSAndrew Thompson    bsdinstall rootpass || error "Could not set root password"
1296f4c1456Seoli3nfi
1302118f387SNathan Whitehorn
1312118f387SNathan Whitehorntrap true SIGINT	# This section is optional
1326f4c1456Seoli3n
1336f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ]
1346f4c1456Seoli3nthen
1352118f387SNathan Whitehornbsdinstall services
1362118f387SNathan Whitehorn
137cc42ef53SBrad Davis    bsddialog --backtitle "$OSNAME Installer" --title "Add User Accounts" --yesno \
1382118f387SNathan Whitehorn        "Would you like to add users to the installed system now?" 0 0 && \
1392118f387SNathan Whitehorn        bsdinstall adduser
1406f4c1456Seoli3nfi
1412118f387SNathan Whitehorn
1422118f387SNathan Whitehorntrap error SIGINT	# SIGINT is bad again
1437041a67eSAndrew Thompsonbsdinstall config  || error "Failed to save config"
144e7c52918SNathan Whitehorncp /etc/resolv.conf $1/etc
145e7c52918SNathan Whitehorncp /etc/localtime $1/etc
1466ce785c5SJose Luis Durancp /var/db/zoneinfo $1/var/db
1472118f387SNathan Whitehorn
1486f4c1456Seoli3n# Run post-install script
1496f4c1456Seoli3nif [ -f $TMPDIR/bsdinstall-installscript-ab ]; then
1506f4c1456Seoli3n	cp $TMPDIR/bsdinstall-installscript-ab $BSDINSTALL_CHROOT/tmp/installscript
1516f4c1456Seoli3n	chmod a+x $BSDINSTALL_CHROOT/tmp/installscript
1526f4c1456Seoli3n	mount -t devfs devfs "$BSDINSTALL_CHROOT/dev"
1536f4c1456Seoli3n	chroot $BSDINSTALL_CHROOT /tmp/installscript $@ 2>&1
1546f4c1456Seoli3n	umount "$BSDINSTALL_CHROOT/dev"
1556f4c1456Seoli3n	rm $BSDINSTALL_CHROOT/tmp/installscript
1566f4c1456Seoli3nfi
1576f4c1456Seoli3n
158dfc23ba5SDag-Erling Smørgravbsdinstall entropy
159dfc23ba5SDag-Erling Smørgrav
160bc4a673fSDevin Teskef_dprintf "Installation Completed at %s" "$(date)"
1610705286bSDevin Teskeexit $SUCCESS
1622118f387SNathan Whitehorn
163bc4a673fSDevin Teske################################################################################
164bc4a673fSDevin Teske# END
165bc4a673fSDevin Teske################################################################################
166