We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
there seems to be an issue with --tags fstab:
--tags fstab
we get:
/dev/mapper/ubuntu-vg-root / ext4 defaults 1 1 /dev/mapper/ubuntu-vg-swap_1 none swap defaults 0 0
should be:
/dev/mapper/ubuntu--vg-root / ext4 defaults 1 1 /dev/mapper/ubuntu--vg-swap_1 none swap defaults 0 0
the issue is probably in this code block:
{{ item.vg }} which is vg: ubuntu-vg from:
{{ item.vg }}
vg: ubuntu-vg
conf_lvm_lvs: - name: swap_1 vg: ubuntu-vg
should be ubuntu--vg but this could eventually break LVM allocation, maybe we should use UUID instead.
ubuntu--vg
LVM
UUID
The text was updated successfully, but these errors were encountered:
89luca89
ivomarino
maschli
No branches or pull requests
there seems to be an issue with
--tags fstab
:we get:
should be:
the issue is probably in this code block:
{{ item.vg }}
which isvg: ubuntu-vg
from:should be
ubuntu--vg
but this could eventually breakLVM
allocation, maybe we should useUUID
instead.The text was updated successfully, but these errors were encountered: