From: Andrew Schoen Date: Tue, 8 Sep 2015 20:43:07 +0000 (-0500) Subject: testnode: ensure fuse group exists X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=4b5c1d5614071a4d440348b61c9863a654240fa5;p=ceph-cm-ansible.git testnode: ensure fuse group exists On debian 8, uploading the fuse.conf file fails because the fuse group is no longer present by default. The following debian bug suggests that testing the fuse group might not be the correct thing to do, but it's probably best just to keep this as close to debian 7 as possible right now. See: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=793927 Signed-off-by: Andrew Schoen --- diff --git a/roles/testnode/tasks/apt_systems.yml b/roles/testnode/tasks/apt_systems.yml index 36c101e..b10b888 100644 --- a/roles/testnode/tasks/apt_systems.yml +++ b/roles/testnode/tasks/apt_systems.yml @@ -42,6 +42,11 @@ when: add_user_xattr is defined and add_user_xattr|changed +- name: Ensure fuse group exists. + group: + name: fuse + state: present + - name: Upload /etc/fuse.conf. template: src: fuse.conf