summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Shubin <james@shubin.ca>2014-04-10 17:11:21 -0400
committerJames Shubin <james@shubin.ca>2014-04-10 17:11:21 -0400
commit117ac5c4f57708e76dd0ebc3a00a33d4861835bc (patch)
tree8887ca127e4d51bf8586b82242534ad045544664
parent29adf91e51a9754f450852f8da14904e1579567f (diff)
downloadpuppet-gluster-117ac5c4f57708e76dd0ebc3a00a33d4861835bc.tar.gz
puppet-gluster-117ac5c4f57708e76dd0ebc3a00a33d4861835bc.tar.xz
puppet-gluster-117ac5c4f57708e76dd0ebc3a00a33d4861835bc.zip
Remove leading colons.
This is actually valid in Puppet 3.x, but removing the colons doesn't break the 3.x tree.
-rw-r--r--manifests/mount.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/mount.pp b/manifests/mount.pp
index 27b6baa..637a18b 100644
--- a/manifests/mount.pp
+++ b/manifests/mount.pp
@@ -39,7 +39,7 @@ define gluster::mount(
}
# because multiple gluster::mount types are allowed on the same server,
# we include with the ensure_resource function to avoid identical calls
- ensure_resource('class', '::gluster::mount::base', $params)
+ ensure_resource('class', 'gluster::mount::base', $params)
# eg: vip:/volume
$split = split($server, ':') # do some $server parsing