From 67032f2dc7c8049b084961fed1f5a210284c2daa Mon Sep 17 00:00:00 2001 From: Tyler Hale Date: Mon, 22 Aug 2022 13:20:54 -0600 Subject: [PATCH] Switching to proper boolean --- roles/base/tasks/redhat_automatic_updates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/base/tasks/redhat_automatic_updates.yml b/roles/base/tasks/redhat_automatic_updates.yml index 6154f9f..ee25897 100644 --- a/roles/base/tasks/redhat_automatic_updates.yml +++ b/roles/base/tasks/redhat_automatic_updates.yml @@ -27,7 +27,7 @@ template: src: dnf-automatic-install.timer.j2 dest: /etc/systemd/system/dnf-automatic-install.timer.d/time.conf - become: yes + become: true notify: Daemon Reload - name: Start and enable systemd timer for dnf-automatic @@ -46,5 +46,5 @@ template: src: "dnf-automatic-install.service-{{ ansible_distribution_major_version }}.j2" dest: /etc/systemd/system/dnf-automatic-install.service.d/override.conf - become: yes + become: true notify: Daemon Reload