X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=chboot;h=64e499ff484176dfbeaf98479bf5d3d9ddbf4dee;hb=a8ec695d6a39792133a21e9eca70e69f9fab107b;hp=40f509367cb64fbc5d9a40b990757cb0601101c5;hpb=11f823d2d74425b6ff3143ec0106e2504346f496;p=automated-distro-installer diff --git a/chboot b/chboot index 40f5093..64e499f 100755 --- a/chboot +++ b/chboot @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/bin/bash # Set grub to boot into a different distro, and reboot unless -r # $0 [DISTRO_NAME] @@ -7,13 +7,14 @@ # DISTRO_NAME is based on the partition names in /boot. eg boot_debianjessie set -eE -o pipefail -trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?"' ERR +trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR [[ $EUID == 0 ]] || exec sudo "$BASH_SOURCE" "$@" reboot=true while [[ $1 == -* ]]; do case $1 in + -d) set -x; shift ;; -r) reboot=false; shift ;; --) break ;; esac @@ -53,3 +54,7 @@ e grub-bios-setup -d $mount_point/grub/i386-pc -s -m $mount_point/grub/device.ma e umount $mount_point e rmdir $mount_point + +if $reboot; then + reboot now +fi