void-minecraft-usb/opt/backup-fs

58 lines
1.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2023-06-26 17:04:28 +02:00
# used to work around cases where stdin is unavailable or not a terminal
if bash -c ': > /dev/tty' > /dev/null 2>&1; then
TTY_OR_CONSOLE="/dev/tty"
else
TTY_OR_CONSOLE="/dev/console"
fi
2023-06-26 17:04:28 +02:00
function yesno {
unset DISCARD_ME
while [ -z "$DISCARD_ME" ]; do
read -p "[y/n] " -n1 DISCARD_ME < $TTY_OR_CONSOLE
2023-06-26 17:04:28 +02:00
case "$DISCARD_ME" in
y)
return 0
;;
n)
return 1
;;
*)
echo " Please enter y for yes or n for no."
unset DISCARD_ME
;;
esac
done
}
2023-06-29 14:33:05 +02:00
#TODO: remove
bash -i < $TTY_OR_CONSOLE
2023-06-26 17:04:28 +02:00
#TODO: refuse to run if system is running
#TODO: add a way to tell the system whether to back up before shutting down
#TODO: colors
echo "Back up system changes to disk?
This only affects things outside the /home directory.
Backing up the system will take some time.
"
if yesno; then
echo "Backing up..."
#TODO: fiddle with squashfs parameters to find optimal settings
#TODO: exclude /tmp
mksquashfs / /run/void-usb/container/new_squashfs.img -b 1M -comp xz -one-file-system -progress -noappend -e /var/cache/xbps
2023-06-26 17:04:28 +02:00
#TODO: check if enough disk space
# yes -> create new image next to old image
# no -> create new image in RAM
#TODO: figure out when appending to existing squashfs is a good idea
mv /run/void-usb/container/new_squashfs.img /run/void-usb/container/squashfs.img
2023-06-26 17:04:28 +02:00
else
echo ""
echo "Not backing up."
fi