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 Whitehornexport BSDINSTALL_CHROOT=$1 402118f387SNathan Whitehorn 412118f387SNathan Whitehornerror() { 427041a67eSAndrew Thompson local msg 437041a67eSAndrew Thompson if [ -n "$1" ]; then 447041a67eSAndrew Thompson msg="$1\n\n" 457041a67eSAndrew Thompson fi 46cc42ef53SBrad Davis bsddialog --backtitle "$OSNAME Installer" --title "Abort" \ 472118f387SNathan Whitehorn --no-label "Exit" --yes-label "Restart" --yesno \ 487041a67eSAndrew Thompson "${msg}An installation step has been aborted. Would you like to restart the installation or exit the installer?" 0 0 494effc388SAlfonso S. Siciliano if [ $? -ne $BSDDIALOG_OK ]; then 502118f387SNathan Whitehorn exit 512118f387SNathan Whitehorn else 52*01ab86f7SPierre Pronchery [ -z "$MIRROR_BUTTON" ] || unset BSDINSTALL_DISTSITE 53e7c52918SNathan Whitehorn exec $0 $BSDINSTALL_CHROOT 542118f387SNathan Whitehorn fi 552118f387SNathan Whitehorn} 562118f387SNathan Whitehorn 572118f387SNathan Whitehornrm -rf $BSDINSTALL_TMPETC 582118f387SNathan Whitehornmkdir $BSDINSTALL_TMPETC 597041a67eSAndrew Thompsonmkdir -p $1 || error "mkdir failed for $1" 602118f387SNathan Whitehorn 616f4c1456Seoli3nif [ -n "$SCRIPT" ] 626f4c1456Seoli3nthen 636f4c1456Seoli3n split -a 2 -p '^#!.*' "$SCRIPT" $TMPDIR/bsdinstall-installscript- 646f4c1456Seoli3n . $TMPDIR/bsdinstall-installscript-aa 656f4c1456Seoli3nfi 666f4c1456Seoli3n 67e7c52918SNathan Whitehorntest ! -d $BSDINSTALL_DISTDIR && mkdir -p $BSDINSTALL_DISTDIR 68e7c52918SNathan Whitehorn 69e7c52918SNathan Whitehornif [ ! -f $BSDINSTALL_DISTDIR/MANIFEST -a -z "$BSDINSTALL_DISTSITE" ]; then 70c0e249d3SLars Kellogg-Stedman exec 5>&1 71c0e249d3SLars Kellogg-Stedman BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&5) 72e7c52918SNathan Whitehorn MIRROR_BUTTON=$? 73c0e249d3SLars Kellogg-Stedman exec 5>&- 747041a67eSAndrew Thompson test $MIRROR_BUTTON -eq 0 || error "No mirror selected" 75e7c52918SNathan Whitehorn export BSDINSTALL_DISTSITE 767041a67eSAndrew Thompson fetch -o $BSDINSTALL_DISTDIR/MANIFEST $BSDINSTALL_DISTSITE/MANIFEST || error "Could not download $BSDINSTALL_DISTSITE/MANIFEST" 77e7c52918SNathan Whitehornfi 78e7c52918SNathan Whitehorn 796f4c1456Seoli3n: ${DISTRIBUTIONS="base.txz"}; export DISTRIBUTIONS 80e7c52918SNathan Whitehornif [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then 81e7c52918SNathan Whitehorn DISTMENU=`cut -f 4,5,6 $BSDINSTALL_DISTDIR/MANIFEST | grep -v -e ^kernel -e ^base` 82e7c52918SNathan Whitehorn 836f4c1456Seoli3n if [ ! "$nonInteractive" == "YES" ] 846f4c1456Seoli3n then 85c0e249d3SLars Kellogg-Stedman exec 5>&1 864effc388SAlfonso S. Siciliano EXTRA_DISTS=$(echo $DISTMENU | xargs -o bsddialog \ 87cc42ef53SBrad Davis --backtitle "$OSNAME Installer" \ 884effc388SAlfonso S. Siciliano --title "Distribution Select" --no-cancel --separate-output \ 89e7c52918SNathan Whitehorn --checklist "Choose optional system components to install:" \ 90e7c52918SNathan Whitehorn 0 0 0 \ 91c0e249d3SLars Kellogg-Stedman 2>&1 1>&5) 92e7c52918SNathan Whitehorn for dist in $EXTRA_DISTS; do 93e7c52918SNathan Whitehorn export DISTRIBUTIONS="$DISTRIBUTIONS $dist.txz" 94e7c52918SNathan Whitehorn done 95e7c52918SNathan Whitehorn fi 966f4c1456Seoli3nfi 972118f387SNathan Whitehorn 982118f387SNathan WhitehornFETCH_DISTRIBUTIONS="" 992118f387SNathan Whitehornfor dist in $DISTRIBUTIONS; do 1002118f387SNathan Whitehorn if [ ! -f $BSDINSTALL_DISTDIR/$dist ]; then 1012118f387SNathan Whitehorn FETCH_DISTRIBUTIONS="$FETCH_DISTRIBUTIONS $dist" 1022118f387SNathan Whitehorn fi 1032118f387SNathan Whitehorndone 104e7c52918SNathan WhitehornFETCH_DISTRIBUTIONS=`echo $FETCH_DISTRIBUTIONS` # Trim white space 1052118f387SNathan Whitehorn 106e7c52918SNathan Whitehornif [ -n "$FETCH_DISTRIBUTIONS" -a -z "$BSDINSTALL_DISTSITE" ]; then 107c0e249d3SLars Kellogg-Stedman exec 5>&1 108c0e249d3SLars Kellogg-Stedman BSDINSTALL_DISTSITE=$(`dirname $0`/mirrorselect 2>&1 1>&5) 109e7c52918SNathan Whitehorn MIRROR_BUTTON=$? 110c0e249d3SLars Kellogg-Stedman exec 5>&- 1117041a67eSAndrew Thompson test $MIRROR_BUTTON -eq 0 || error "No mirror selected" 112e7c52918SNathan Whitehorn export BSDINSTALL_DISTSITE 1132118f387SNathan Whitehornfi 1142118f387SNathan Whitehorn 115e7c52918SNathan Whitehornif [ ! -z "$FETCH_DISTRIBUTIONS" ]; then 1167041a67eSAndrew Thompson bsdinstall distfetch || error "Failed to fetch distribution" 117e7c52918SNathan Whitehornfi 118e7c52918SNathan Whitehorn 1197041a67eSAndrew Thompsonbsdinstall checksum || error "Distribution checksum failed" 1207041a67eSAndrew Thompsonbsdinstall distextract || error "Distribution extract failed" 1216f4c1456Seoli3n 1226f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ] 1236f4c1456Seoli3nthen 1247041a67eSAndrew Thompson bsdinstall rootpass || error "Could not set root password" 1256f4c1456Seoli3nfi 1262118f387SNathan Whitehorn 1272118f387SNathan Whitehorntrap true SIGINT # This section is optional 1286f4c1456Seoli3n 1296f4c1456Seoli3nif [ ! "$nonInteractive" == "YES" ] 1306f4c1456Seoli3nthen 1312118f387SNathan Whitehornbsdinstall services 1322118f387SNathan Whitehorn 133cc42ef53SBrad Davis bsddialog --backtitle "$OSNAME Installer" --title "Add User Accounts" --yesno \ 1342118f387SNathan Whitehorn "Would you like to add users to the installed system now?" 0 0 && \ 1352118f387SNathan Whitehorn bsdinstall adduser 1366f4c1456Seoli3nfi 1372118f387SNathan Whitehorn 1382118f387SNathan Whitehorntrap error SIGINT # SIGINT is bad again 1397041a67eSAndrew Thompsonbsdinstall config || error "Failed to save config" 140e7c52918SNathan Whitehorncp /etc/resolv.conf $1/etc 141e7c52918SNathan Whitehorncp /etc/localtime $1/etc 1426ce785c5SJose Luis Durancp /var/db/zoneinfo $1/var/db 1432118f387SNathan Whitehorn 1446f4c1456Seoli3n# Run post-install script 1456f4c1456Seoli3nif [ -f $TMPDIR/bsdinstall-installscript-ab ]; then 1466f4c1456Seoli3n cp $TMPDIR/bsdinstall-installscript-ab $BSDINSTALL_CHROOT/tmp/installscript 1476f4c1456Seoli3n chmod a+x $BSDINSTALL_CHROOT/tmp/installscript 1486f4c1456Seoli3n mount -t devfs devfs "$BSDINSTALL_CHROOT/dev" 1496f4c1456Seoli3n chroot $BSDINSTALL_CHROOT /tmp/installscript $@ 2>&1 1506f4c1456Seoli3n umount "$BSDINSTALL_CHROOT/dev" 1516f4c1456Seoli3n rm $BSDINSTALL_CHROOT/tmp/installscript 1526f4c1456Seoli3nfi 1536f4c1456Seoli3n 154dfc23ba5SDag-Erling Smørgravbsdinstall entropy 155dfc23ba5SDag-Erling Smørgrav 156bc4a673fSDevin Teskef_dprintf "Installation Completed at %s" "$(date)" 1570705286bSDevin Teskeexit $SUCCESS 1582118f387SNathan Whitehorn 159bc4a673fSDevin Teske################################################################################ 160bc4a673fSDevin Teske# END 161bc4a673fSDevin Teske################################################################################ 162