]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
testnode: Ensure fuse, kvm and disk groups exist. 672/head
authorZack Cerza <zack@redhat.com>
Thu, 10 Feb 2022 21:15:08 +0000 (14:15 -0700)
committerZack Cerza <zack@redhat.com>
Wed, 16 Mar 2022 21:51:09 +0000 (15:51 -0600)
Signed-off-by: Zack Cerza <zack@redhat.com>
roles/testnode/tasks/apt_systems.yml

index 5d5b843f7b367337adc47a00a01d599d0c5f4244..e7d029530f47959e66f1cb03bc75f387167918c2 100644 (file)
   when: add_user_xattr is defined and
         add_user_xattr is changed
 
-- name: Ensure fuse group exists.
+- name: Ensure fuse, kvm and disk groups exist.
   group:
-    name: fuse
+    name: "{{ item }}"
     state: present
+  with_items:
+  - fuse
+  - kvm
+  - disk
 
 - name: Upload /etc/fuse.conf.
   template: