diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2019-03-31 22:05:45 +0200 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2019-03-31 22:05:51 +0200 |
commit | 48ffd1b69723dc6ddd023d803fc0edd8034ce386 (patch) | |
tree | 78b953ffe1245f6820797ffdb275186c1169fba2 /roles/space_server | |
parent | 958036fae07091cb77070a2fdf97c353ab0f246d (diff) | |
download | labitat-ansible-48ffd1b69723dc6ddd023d803fc0edd8034ce386.tar.gz labitat-ansible-48ffd1b69723dc6ddd023d803fc0edd8034ce386.tar.xz labitat-ansible-48ffd1b69723dc6ddd023d803fc0edd8034ce386.zip |
space_server: kernel: make sure selinux is disabled
Diffstat (limited to 'roles/space_server')
-rw-r--r-- | roles/space_server/templates/cmdline.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/space_server/templates/cmdline.j2 b/roles/space_server/templates/cmdline.j2 index 4e523b6..9d57443 100644 --- a/roles/space_server/templates/cmdline.j2 +++ b/roles/space_server/templates/cmdline.j2 @@ -5,4 +5,4 @@ {% else %} {% set subvol = '/%s%s' % (ansible_distribution.lower(), ansible_distribution_version) %} {% endif %} -console=ttyS0,115200n8 ro root={{ root.device }} rootfstype=btrfs ro rootflags={{ root.options|regex_replace('noatime,','') }},subvol={{ subvol }} rootwait audit=0 systemd.unified_cgroup_hierarchy=1 +console=ttyS0,115200n8 ro root={{ root.device }} rootfstype=btrfs ro rootflags={{ root.options|regex_replace('noatime,','') }},subvol={{ subvol }} rootwait selinux=0 audit=0 systemd.unified_cgroup_hierarchy=1 |