aboutsummaryrefslogtreecommitdiff
path: root/manifests/init.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:06:20 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:06:20 -0300
commit97b2bc3252882c5db20a40692a50c0da5d98ed78 (patch)
treec5112053a1a00dc4acc6d35476368e6c6796cf24 /manifests/init.pp
parent71022836ebc27767e9edc75a1d323523bdd779f3 (diff)
downloadpuppet-ikiwiki-97b2bc3252882c5db20a40692a50c0da5d98ed78.tar.gz
puppet-ikiwiki-97b2bc3252882c5db20a40692a50c0da5d98ed78.tar.bz2
Changes for puppet 4 compatibility
Diffstat (limited to 'manifests/init.pp')
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 518d795..a2de89c 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -11,7 +11,7 @@ class ikiwiki(
content => template('ikiwiki/deploy.sh.erb'),
owner => root,
group => root,
- mode => 755,
+ mode => '755',
}
file { "/usr/local/sbin/ikiwiki-refresh":
@@ -19,6 +19,6 @@ class ikiwiki(
content => template('ikiwiki/refresh.sh.erb'),
owner => root,
group => root,
- mode => 755,
+ mode => '755',
}
}