]> git.apps.os.sepia.ceph.com Git - ceph-cm-ansible.git/commitdiff
testnode: ensure fuse group exists 127/head
authorAndrew Schoen <aschoen@redhat.com>
Tue, 8 Sep 2015 20:43:07 +0000 (15:43 -0500)
committerAndrew Schoen <aschoen@redhat.com>
Tue, 8 Sep 2015 20:43:07 +0000 (15:43 -0500)
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 <aschoen@redhat.com>
roles/testnode/tasks/apt_systems.yml

index 36c101e7e37f9899b5d2c79f823d973f410a3f4d..b10b88894389fd71e7536e735011aad8454c46d6 100644 (file)
   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