From f96e3d491a5c9b3a46187689c64d3d47ddf31a0a Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 16 Mar 2015 16:24:45 -0500 Subject: [PATCH] Set mode on /etc/fuse.conf during rhel setup Signed-off-by: Andrew Schoen --- roles/common/tasks/setup-redhat.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/common/tasks/setup-redhat.yml b/roles/common/tasks/setup-redhat.yml index 5e9f947..da98778 100644 --- a/roles/common/tasks/setup-redhat.yml +++ b/roles/common/tasks/setup-redhat.yml @@ -27,6 +27,11 @@ owner: root mode: 0644 +- name: Set mode on /etc/fuse.conf + file: + path: /etc/fuse.conf + mode: 0644 + - name: Include version specific tasks. include: redhat/rhel_7.0.yml when: ansible_distribution_version == "7.0" -- 2.39.5