Skip to content
Snippets Groups Projects
Unverified Commit 8ccdca67 authored by anarcat's avatar anarcat
Browse files

the name created by the installer is different

This silences a warning when rebuilding the initrd.
parent 9e6f97ed
No related branches found
No related tags found
No related merge requests found
......@@ -225,7 +225,7 @@ point it becomes a bit too complicated.
If you need to do something post-install, this should bring you a
working shell in the `chroot`:
cryptsetup luksOpen /dev/sda3 crypt_sda3 &&
cryptsetup luksOpen /dev/sda3 crypt_dev_sda3 &&
vgchange -a y &&
mount /dev/mapper/vg_ganeti-root /mnt &&
for fs in /run /sys /dev /proc; do mount -o bind $fs /mnt$fs; done &&
......@@ -243,7 +243,7 @@ And this will cleanup the rest:
for fs in /dev /sys /run /proc; do umount /mnt$fs; done &&
umount /mnt &&
vgchange -a n &&
cryptsetup luksClose crypt_sda3
cryptsetup luksClose crypt_dev_sda3
### IP address
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment