Forget the shebang for the initramfs-tools script…

This commit is contained in:
gardouille 2016-09-07 15:09:24 +02:00
parent c99acc90d7
commit 9059a9930c
1 changed files with 4 additions and 2 deletions

6
templates/hypervisor/initramfs-lvm-manual.erb Normal file → Executable file
View File

@ -1,9 +1,11 @@
#!/bin/sh
# Ensure to detect all LV
/sbin/lvm pvscan
/sbin/lvm vgscan
/sbin/lvm vgchange -ay
echo "Wait for 2s"
sleep 2
echo "Wait for 5s"
sleep 5
exit 0