cloudsidedev / appside

Multitenant environment automation.
http://cloudside.ch
GNU Affero General Public License v3.0
38 stars 7 forks source link

fstab #108

Open ivomarino opened 6 years ago

ivomarino commented 6 years ago

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.