summaryrefslogtreecommitdiff
path: root/manifests/client/duplicity.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/client/duplicity.pp')
-rw-r--r--manifests/client/duplicity.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/client/duplicity.pp b/manifests/client/duplicity.pp
new file mode 100644
index 0000000..938ff3f
--- /dev/null
+++ b/manifests/client/duplicity.pp
@@ -0,0 +1,9 @@
+class backupninja::client::duplicity inherits backupninja::client::defaults {
+
+ if !defined(Package["duplicity"]) {
+ if $duplicity_ensure_version == '' { $duplicity_ensure_version = 'installed' }
+ package { 'duplicity':
+ ensure => $duplicity_ensure_version,
+ }
+ }
+}