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