From 8e1aa605e2942a6ab7704d2059f942c26de0a47a Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 9 Oct 2016 18:04:47 -0400 Subject: [PATCH] do not attempt to remount, fuse does not support it --- manifests/mount.pp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/manifests/mount.pp b/manifests/mount.pp index 649a602..0987e1e 100644 --- a/manifests/mount.pp +++ b/manifests/mount.pp @@ -16,11 +16,12 @@ include glusterfs::client mount { $title: - ensure => $ensure, - device => $device, - fstype => 'glusterfs', - options => $options, - require => Package['glusterfs-fuse'], + ensure => $ensure, + device => $device, + fstype => 'glusterfs', + remounts => false, + options => $options, + require => Package['glusterfs-fuse'], } }