1
Fork 0
satellite/scripts/emergency.sh

50 lines
1.1 KiB
Bash
Raw Normal View History

#!/usr/bin/env nix-shell
#!nix-shell ../devshells/bootstrap/shell.nix
2024-01-18 02:27:38 +01:00
#!nix-shell -i bash
# Check if at least one argument is provided
2024-08-26 19:17:13 +02:00
if [ "$#" != "1" ] && [ "$#" != "2" ]; then
echo "Usage: $0 $1 <disko-mode> [action]"
exit 1
fi
# Ensure correct first argument type
2024-08-26 19:17:13 +02:00
if [ "$2" != "disko" ] && [ "$2" != "mount" ]; then
echo "Disko action must be either 'disko' or 'mount'"
exit 1
fi
# Ensure correct second argument type
2024-08-26 19:17:13 +02:00
if [ "$#" != "2" ] && [ "$3" != "install" ] && [ "$3" != "enter" ]; then
echo "Action must either be empty, 'install' or 'enter'"
exit 1
fi
2024-08-26 19:17:13 +02:00
if mountpoint -q /hermes; then
echo "Keys already mounted"
else
echo "Mounting keys"
mkdir -p /hermes
mount /dev/disk/by-uuid/7FE7-CA68 /hermes
fi
echo "Running disko"
2024-08-26 19:17:13 +02:00
if [ "$2" = "mount" ] && [ "$1" = "lapetus" ]; then
zpool import -lfR /mnt zroot
fi
nix run disko -- --mode $1 ./hosts/nixos/lapetus/filesystems/partitions.nix
2024-08-26 19:17:13 +02:00
if [ "$3" = "install" ]; then
echo "Installing nixos"
2024-08-26 19:17:13 +02:00
nixos-install --flake ".#$1"
fi
2024-08-26 19:17:13 +02:00
if [ "$3" = "enter" ]; then
echo "Entering nixos"
nixos-enter --root /mnt
fi
2024-01-18 01:56:50 +01:00
echo "All done!"