From 4b5c1d5614071a4d440348b61c9863a654240fa5 Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Tue, 8 Sep 2015 15:43:07 -0500 Subject: [PATCH] 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 --- roles/testnode/tasks/apt_systems.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/testnode/tasks/apt_systems.yml b/roles/testnode/tasks/apt_systems.yml index 36c101e7..b10b8889 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 -- 2.47.3