aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/templates/fstab.j2
blob: ba4f69d57933756f8cfa7fc8c61a8e7a88299858 (plain) (blame)
1
2
3
4
5
6
7
8
9
{{ boot.device }} /boot vfat defaults,{{ boot.options }} 0 2

{% if ansible_distribution_release == 'Rawhide' %}
{{ root.device }} /     btrfs defaults,{{ root.options }},subvol=/rawhide 0 1
{% else %}
{{ root.device }} /     btrfs defaults,{{ root.options }},subvol=/{{ ansible_distribution.lower() }}{{ ansible_distribution_version }} 0 1
{% endif %}
{{ root.device }} /home btrfs defaults,{{ root.options }},subvol=/home 0 2
{{ root.device }} /mnt  btrfs defaults,{{ root.options }},subvol=/ 0 2