bunch of fixes, change sy host, deploy some new stuff
[distro-setup] / zboot
1 #!/bin/bash
2
3 script=$(readlink -f -- "$BASH_SOURCE")
4 [[ $EUID == 0 ]] || exec sudo -E "$script" "$@"
5
6 source /usr/local/lib/err
7
8
9 # Explaining this whole thing. The host amy is used by someone else,
10 # i back it up to my extra big partition on one computer.
11 # But I also want to restore it and test out the restoration on
12 # a computer I usually use. For this, I created a separate partition
13 # that has the amy encryption password, and a separate boot so
14 # that I could encrypt my own boot partition if I want. Then,
15 # I backup from this big partition into that partition in order
16 # to boot and run it.
17 #
18 ## In order to boot and run it:
19
20 set -x
21
22 mount -o bind /mnt/root2/root_ubuntubionic /mnt/1
23 cd /mnt/1
24 /b/ds/gen-amy-fstab ubuntubionic .
25 teeu /mnt/1/etc/default/grub <<<'GRUB_DISABLE_OS_PROBER=true'
26 mount -o bind /mnt/boot2/boot_ubuntubionic boot
27 mount -o bind /dev dev
28 mount -o bind /proc proc
29 mount -o bind /sys sys
30 mkdir -p boot/efi
31 mount $(awk '$2 == "/boot/efi" {print $1}' /etc/mtab) boot/efi
32
33 cp /b/ds/zboot-chroot ./root
34
35 chroot . ./root/zboot-chroot
36
37 echo "check output and reboot"