aboutsummaryrefslogtreecommitdiff
path: root/manifests/labelmount.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:02:45 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-06-05 19:02:45 -0300
commitb5e02d6fe88dd074f4c04f32dff9f39c43ef5208 (patch)
tree88446902428e8b4fd7e84953cddb3b89486a7201 /manifests/labelmount.pp
parentc476ff8b9b48e63f51b4457d7838fbd7fbcecc2b (diff)
downloadpuppet-backupninja-b5e02d6fe88dd074f4c04f32dff9f39c43ef5208.tar.gz
puppet-backupninja-b5e02d6fe88dd074f4c04f32dff9f39c43ef5208.tar.bz2
Changes for puppet 4 compatibility
Diffstat (limited to 'manifests/labelmount.pp')
-rw-r--r--manifests/labelmount.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/labelmount.pp b/manifests/labelmount.pp
index 8974cec..bc25f0c 100644
--- a/manifests/labelmount.pp
+++ b/manifests/labelmount.pp
@@ -28,7 +28,7 @@ define backupninja::labelmount($order = 10,
content => template('backupninja/labelmount.conf.erb'),
owner => root,
group => root,
- mode => 0600,
+ mode => '0600',
require => File["${backupninja::configdir}"]
}
@@ -37,7 +37,7 @@ define backupninja::labelmount($order = 10,
content => template('backupninja/umount.conf.erb'),
owner => root,
group => root,
- mode => 0600,
+ mode => '0600',
require => File["${backupninja::configdir}"]
}
@@ -48,7 +48,7 @@ define backupninja::labelmount($order = 10,
content => template('backupninja/labelmount.handler'),
owner => root,
group => root,
- mode => 0755,
+ mode => '0755',
require => Package[backupninja]
}
@@ -56,7 +56,7 @@ define backupninja::labelmount($order = 10,
content => template('backupninja/umount.handler'),
owner => root,
group => root,
- mode => 0755,
+ mode => '0755',
require => Package[backupninja]
}
}