aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/templates/cmdline.j2
blob: 36b1e15a90437208f8fc23b0e321abce04516fa5 (plain) (blame)
1
2
3
4
5
{% if ansible_distribution_release == 'Rawhide' %}
console=ttyS0,115200n8 ro root={{ root.device }} rootfstype=btrfs ro rootflags={{ root.options|regex_replace('noatime,','') }},subvol=/rawhide rootwait audit=0
{% else %}
console=ttyS0,115200n8 ro root={{ root.device }} rootfstype=btrfs ro rootflags={{ root.options|regex_replace('noatime,','') }},subvol=/{{ ansible_distribution.lower() }}{{ ansible_distribution_version }} rootwait audit=0
{% endif %}