This commit is contained in:
Marc Beninca 2024-11-11 17:59:03 +01:00
parent ddde3e3c6b
commit 6b81ee0a5a
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
3 changed files with 6 additions and 13 deletions

View file

@ -198,10 +198,3 @@ rescue_hetzner_wipe_8_8_2_make() {
--uuid '00000000-0000-0000-0000-000000000005' \ --uuid '00000000-0000-0000-0000-000000000005' \
'/media/crypt/swap' '/media/crypt/swap'
} }
rescue_hetzner_wipe_8_8_3_close() {
umount '/media/boot'
#
umount '/media/crypt' &&
cryptsetup luksClose 'crypt'
}

View file

@ -125,9 +125,3 @@ rescue_ovh_wipe_vle2_2_make() {
--uuid "00000000-0000-0000-0000-000000000005" \ --uuid "00000000-0000-0000-0000-000000000005" \
"/media/crypt/swap" "/media/crypt/swap"
} }
rescue_ovh_wipe_vle2_3_close() {
umount "/media/boot"
umount "/media/crypt" &&
cryptsetup luksClose "crypt"
}

View file

@ -137,3 +137,9 @@ source \"/etc/bash/main.sh\" ; rescue_configure \"${hostname}\""
return 1 return 1
fi fi
} }
rescue_wipe_3_close() {
umount "/media/boot"
umount "/media/crypt" &&
cryptsetup luksClose "crypt"
}