appside
appside copied to clipboard
fstab
there seems to be an issue with --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:
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.