Compare commits
No commits in common. "61646d9d04ff918379e89acda4f8fdf848b4c815" and "175ad8e3be7b324cf56154b718c07546de9b75c9" have entirely different histories.
61646d9d04
...
175ad8e3be
|
@ -323,6 +323,8 @@ wget --output-document=/mnt/target/etc/kernel.d/post-remove/99-void-usb https://
|
|||
chmod 744 /mnt/target/etc/kernel.d/post-remove/99-void-usb
|
||||
|
||||
run_in_target xbps-reconfigure -fa
|
||||
run_in_target /opt/void-usb/backup-fs
|
||||
|
||||
# running chroot directly bc run_in_target function doesn’t allow user input
|
||||
chroot /mnt/target /opt/void-usb/backup-fs
|
||||
|
||||
#
|
||||
|
|
|
@ -27,8 +27,21 @@ function yesno {
|
|||
done
|
||||
}
|
||||
|
||||
#TODO: remove
|
||||
bash -i < $TTY_OR_CONSOLE
|
||||
# Overlay should still be mounted, right?
|
||||
|
||||
cat /proc/mounts
|
||||
|
||||
read -p "
|
||||
press any key" -n1 DISCARD_ME < $TTY_OR_CONSOLE
|
||||
|
||||
# And no services running?
|
||||
|
||||
ps aux | grep -vF "[kworker"
|
||||
|
||||
read -p "
|
||||
press any key" -n1 DISCARD_ME < $TTY_OR_CONSOLE
|
||||
|
||||
#TODO: remove above debugging sanity checks
|
||||
|
||||
#TODO: refuse to run if system is running
|
||||
|
||||
|
|
Loading…
Reference in New Issue