From 5000a055cad37ea840609120cb9fa5765e238701 Mon Sep 17 00:00:00 2001 From: Emil Renner Berthing Date: Thu, 27 Feb 2020 18:48:05 +0100 Subject: fedora: allow empty strings in ini files --- roles/fedora/tasks/systemd.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'roles/fedora/tasks/systemd.yml') diff --git a/roles/fedora/tasks/systemd.yml b/roles/fedora/tasks/systemd.yml index a2b9e4b..5413266 100644 --- a/roles/fedora/tasks/systemd.yml +++ b/roles/fedora/tasks/systemd.yml @@ -7,8 +7,8 @@ no_extra_spaces: yes section: "{{ item.key.split('.',1)[0] }}" option: "{{ item.key.split('.',1)[1] }}" - value: "{{ item.value|ternary(item.value,omit) }}" - state: "{{ item.value|ternary('present','absent') }}" + value: "{{ (item.value is string)|ternary(item.value,omit) }}" + state: "{{ (item.value is string)|ternary('present','absent') }}" with_dict: '{{ systemd_conf }}' - name: Configure journald.conf @@ -19,8 +19,8 @@ no_extra_spaces: yes section: "{{ item.key.split('.',1)[0] }}" option: "{{ item.key.split('.',1)[1] }}" - value: "{{ item.value|ternary(item.value,omit) }}" - state: "{{ item.value|ternary('present','absent') }}" + value: "{{ (item.value is string)|ternary(item.value,omit) }}" + state: "{{ (item.value is string)|ternary('present','absent') }}" with_dict: '{{ journald_conf }}' - name: Configure logind.conf @@ -31,8 +31,8 @@ no_extra_spaces: yes section: "{{ item.key.split('.',1)[0] }}" option: "{{ item.key.split('.',1)[1] }}" - value: "{{ item.value|ternary(item.value,omit) }}" - state: "{{ item.value|ternary('present','absent') }}" + value: "{{ (item.value is string)|ternary(item.value,omit) }}" + state: "{{ (item.value is string)|ternary('present','absent') }}" with_dict: '{{ logind_conf }}' # vim: set ts=2 sw=2 et: -- cgit v1.2.1