From 29f49449524494e1ee07e069e8c45e48adfd14b0 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Fri, 3 Jun 2022 21:08:58 +0200 Subject: [PATCH] Change booleans after lint nag --- roles/libvirt/tasks/main.yml | 2 +- roles/powershell/tasks/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/libvirt/tasks/main.yml b/roles/libvirt/tasks/main.yml index eac708e..c8511f6 100644 --- a/roles/libvirt/tasks/main.yml +++ b/roles/libvirt/tasks/main.yml @@ -19,7 +19,7 @@ - name: Add user to libvirt group user: name: "{{ ansible_facts['env']['USER'] }}" - append: yes + append: true groups: libvirt - name: Put 'libvirt libvirt_guest' in /etc/nsswitch.conf diff --git a/roles/powershell/tasks/main.yml b/roles/powershell/tasks/main.yml index 59a8e27..c64b1e6 100644 --- a/roles/powershell/tasks/main.yml +++ b/roles/powershell/tasks/main.yml @@ -3,8 +3,8 @@ git: repo: https://aur.archlinux.org/powershell-bin.git dest: ~/builds/powershell-bin - clone: yes - update: no + clone: true + update: false when: ansible_facts['distribution'] == 'Archlinux' - name: Make and install powershell-bin