why did i

This commit is contained in:
Patrick 2024-11-14 20:59:06 +01:00
parent 73c5a2e7dc
commit 71f9a54323
2 changed files with 6 additions and 6 deletions

View file

@ -3,6 +3,12 @@
# This file is part of VM-Experiments. # This file is part of VM-Experiments.
# Licensed under the GPL-3.0-or-later. See LICENSE for details. # Licensed under the GPL-3.0-or-later. See LICENSE for details.
read -p "Are you sure you want to install? (Type 'NO' to cancel, uppercase.)" install
if [ "$install" = "NO" ]; then
reboot
fi
trap '' SIGINT SIGTERM trap '' SIGINT SIGTERM
parted -s /dev/sda mklabel msdos parted -s /dev/sda mklabel msdos

View file

@ -3,12 +3,6 @@
# This file is part of VM-Experiments. # This file is part of VM-Experiments.
# Licensed under the GPL-3.0-or-later. See LICENSE for details. # Licensed under the GPL-3.0-or-later. See LICENSE for details.
read -p "Are you sure you want to install? (Type 'NO' to cancel, uppercase.)" install
if [ "$install" = "NO" ]; then
reboot
fi
trap '' SIGINT SIGTERM trap '' SIGINT SIGTERM
while true; do while true; do