cleanup docs, getopt arg parsing
[automated-distro-installer] / chboot
1 #!/bin/bash
2 # Copyright (C) 2016 Ian Kelling
3
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18
19 set -eE -o pipefail
20 trap 'echo "$0:$LINENO:error: \"$BASH_COMMAND\" returned $?" >&2' ERR
21
22 [[ $EUID == 0 ]] || exec sudo "$BASH_SOURCE" "$@"
23
24 usage() {
25 cat <<EOF
26 Usage: ${0##*/} [OPTIONS] DISTRO_NAME
27 Set grub to boot into a different distro, and reboot unless -r
28
29 With no argument, print available distros
30 DISTRO_NAME is based on the partition names in /boot.
31 For example debianjessie for the partitionn boot_debianjessie.
32
33 -r Do not reboot.
34 -d Enable debug output.
35 -h|--help Print help and exit.
36
37 Note: Uses GNU getopt options parsing style
38 EOF
39 exit $1
40 }
41
42 ###### begin command line parsing #####
43 reboot=true
44 temp=$(getopt -l opt o "$@") || usage 1
45 eval set -- "$temp"
46 while true; do
47 case $1 in
48 -d) set -x; shift ;;
49 -r) reboot=false; shift ;;
50 -h|--help) usage ;;
51 --) shift; break ;;
52 *) echo "$0: Internal error!" ; exit 1 ;;
53 esac
54 done
55
56
57 distro=$1
58
59 if [[ ! $distro ]]; then
60 echo "available distros:"
61 btrfs subvolume list /boot | sed -rn 's/^.*boot_(.*)/\1/p'
62 exit 0
63 fi
64
65 ###### end command line parsing #####
66
67
68 #### begin initial error checking #####
69
70 if ! btrfs subvolume list /boot | grep "_$distro$" &>/dev/null; then
71 echo "$0: error: _$distro$ not found in btrfs subvolume list /boot:"
72 btrfs subvolume list /boot
73 exit 1
74 fi
75
76 #### end initial error checking #####
77
78 e() { echo "$@"; "$@"; }
79
80 boot_dev=$(mount | sed -rn "s#^(\S+) on /boot .*#\1#p")
81
82 mount_point=$(mktemp -d)
83
84 e mount -o subvol=boot_$distro $boot_dev $mount_point
85
86 boot_disk=${boot_dev%%[0-9]*}
87
88 # arch doesn't have $mount_point/grub/device.map, accoring to the grub manual,
89 # it just generates one if the file doesn't exist.
90 # https://www.gnu.org/software/grub/manual/html_node/Device-map.html
91 e grub-bios-setup -d $mount_point/grub/i386-pc -s -m $mount_point/grub/device.map $boot_disk
92
93 e umount $mount_point
94 e rmdir $mount_point
95
96 if $reboot; then
97 touch /tmp/keyscript-off
98 reboot now
99 fi