From a3f9082a07fc085eae9d52b3103af55dbcb37fe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bompard?= Date: Fri, 24 Jun 2022 10:55:09 +0200 Subject: [PATCH] Ansible issues a warning when there's `append` but no `groups` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Bompard --- roles/bodhi2/base/tasks/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/roles/bodhi2/base/tasks/main.yml b/roles/bodhi2/base/tasks/main.yml index e7a1c458e1..134b5b8518 100644 --- a/roles/bodhi2/base/tasks/main.yml +++ b/roles/bodhi2/base/tasks/main.yml @@ -9,10 +9,10 @@ owner: root group: root -#- name: Create the bodhi group -# group: -# name: bodhi -# system: yes +- name: Create the bodhi group + group: + name: bodhi + system: yes - name: Create the bodhi user user: @@ -22,7 +22,6 @@ shell: /sbin/nologin home: /usr/share/bodhi system: yes - append: yes state: present - name: Configure alembic