aboutsummaryrefslogtreecommitdiff
path: root/manifests/daemon.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:06:14 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:06:14 -0300
commit728ae6aa89996047ce8be9f3bfff11b211a8dd7e (patch)
tree2639c24be8107a12e47464e2c1ccb7b53835a186 /manifests/daemon.pp
parent730c1daa855d2495227dbf5266285ec5252c2c84 (diff)
downloadpuppet-git-728ae6aa89996047ce8be9f3bfff11b211a8dd7e.tar.gz
puppet-git-728ae6aa89996047ce8be9f3bfff11b211a8dd7e.tar.bz2
Changes for puppet 4 compatibility
Diffstat (limited to 'manifests/daemon.pp')
-rw-r--r--manifests/daemon.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp
index 28c3eaf..cdb8639 100644
--- a/manifests/daemon.pp
+++ b/manifests/daemon.pp
@@ -6,7 +6,7 @@ class git::daemon (
# directory for git user and repositories
file { "/var/git":
ensure => directory,
- mode => 0755,
+ mode => '0755',
owner => git,
group => git,
}
@@ -16,7 +16,7 @@ class git::daemon (
ensure => directory,
owner => git,
group => git,
- mode => 0755,
+ mode => '0755',
recurse => false,
}
@@ -55,7 +55,7 @@ class git::daemon (
ensure => present,
owner => root,
group => root,
- mode => 0755,
+ mode => '0755',
source => "puppet:///modules/git/git-mass-update-server-info",
}