open,close

This commit is contained in:
Marc Beninca 2023-10-03 09:54:01 +02:00
parent eeda17878a
commit d58afc8226

View file

@ -243,12 +243,15 @@ function hetzner-rescue-wipe-12-10-10 {
--use-random \
luksFormat \
'/dev/md/crypt'
# open
echo "${passphrase}" \
| cryptsetup luksOpen '/dev/md/crypt' 'crypt'
####
# close
cryptsetup luksClose 'crypt'
}
function hetzner-rescue-wipe-12-10-10-extra {
# open
echo "${passphrase}" \
| cryptsetup luksOpen '/dev/sda1' 'crypt'
# pv
pvcreate '/dev/mapper/crypt'
# vg
@ -263,6 +266,4 @@ function hetzner-rescue-wipe-12-10-10-extra {
mkfs.ext4 -L 'data' '/dev/mapper/crypt-data'
# vg off
vgchange --activate n 'crypt'
# close
cryptsetup luksClose 'crypt'
}