X-Git-Url: https://iankelling.org/git/?p=automated-distro-installer;a=blobdiff_plain;f=arch-init;h=2f14ad60bc1485a6f325f722bab9c59863e1fe09;hp=36b77c6b6851ca851b48949abf9db399ff3c39f4;hb=HEAD;hpb=2e975979fa5bad84f3d2a84a9d62fbfd8793374c diff --git a/arch-init b/arch-init index 36b77c6..2f14ad6 100755 --- a/arch-init +++ b/arch-init @@ -1,20 +1,28 @@ #!/bin/bash -x +# Copyright (C) 2016 Ian Kelling -# see t.org for how to call +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. -set -eE -o pipefail -trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. -cd $(dirname $(readlink -f "$BASH_SOURCE")) +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +x="$(readlink -f "$BASH_SOURCE")"; source "${x%/*}/bash-trace" +cd ${x%/*} export HOSTNAME="$1" mirror=$2 -TPPASS="$(cat /root/shadow/traci-simple)" (( $# >= 1 )) || { echo "$0: error: need 1 or 2 arguments"; exit 1; } -mv /root/devbyid /usr/bin - rm -f /etc/pacman.d/mirrorlist # https://wiki.archlinux.org/index.php/Mirrors#Sorting_mirrors @@ -26,7 +34,6 @@ curl -s 'https://www.archlinux.org/mirrorlist/?country=US&protocol=https&ip_vers . /a/bin/fai/fai-wrapper export LUKS_DIR=/root/luks -export HOSTNAME=$hostname export DISTRO=arch partition_script=/a/bin/fai/fai/config/hooks/partition.DEFAULT chmod +x $partition_script @@ -36,7 +43,7 @@ export PARTITION_PROMPT=true # to be idempotent if we fail after partitioning already_partitioned=true mount_out=$(mount) -for dir in /mnt{,/home,/boot,/q}; do +for dir in /mnt{,/home,/boot,/a}; do regex=" on $dir " if [[ ! $mount_out =~ $regex ]]; then already_partitioned=false @@ -57,17 +64,16 @@ export bootn=3 export swapn=2 export BOOT_DEVICE export ROOT_PARTITIONS -sed -ri "/^crypt_dev_\S+$rootn /d" /tmp/fai/crypttab +sed -ri --follow-symlinks "/^crypt_dev_\S+$rootn /d" /tmp/fai/crypttab if ! $already_partitioned; then mount -o subvol=root_$DISTRO $ROOT_PARTITION /mnt - mkdir -p /mnt/{q,home,boot} - mount -o subvol=q $ROOT_PARTITION /mnt/q + mkdir -p /mnt/boot mount -o subvol=boot_$DISTRO $BOOT_PARTITION /mnt/boot fi # https://wiki.archlinux.org/index.php/Dm-crypt/Device_encryption#Keyfiles -cp /root/luks/host-$hostname /mnt/crypto_keyfile.bin +cp /root/luks/host-$HOSTNAME /mnt/crypto_keyfile.bin chmod 600 /mnt/crypto_keyfile.bin @@ -78,8 +84,6 @@ fi pacstrap /mnt base cp /tmp/fai/{fstab,crypttab} /mnt/etc cp /a/bin/fai/encrypt /mnt/usr/lib/initcpio/hooks -# not needed anymore -#cp /usr/bin/devbyid /mnt/root cp -r /root/.ssh /mnt/root @@ -89,8 +93,8 @@ bindmount() { mkdir -p $mountpoint mount -o bind $source $mountpoint } -bindmount /a /mnt/a bindmount /root/shadow /mnt/q/root/shadow +bindmount /a /mnt/a mkdir -p /mnt/etc/ssh cp /etc/ssh/ssh_host_* /mnt/etc/ssh @@ -104,7 +108,7 @@ rm -f /mnt/etc/resolv.conf ln -s /run/systemd/resolve/resolv.conf /mnt/etc/resolv.conf # not necsesary, but makes reboot go fast. -#umount -R /mnt; sleep 1 +umount -R /mnt; sleep 1 # causes 255 exit code, so doing this from the caller script. # reboot now