]> gitweb.fluxo.info Git - puppet-backupninja.git/commitdiff
Right now just local origin and remote destination is supported
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 16 Aug 2010 19:50:24 +0000 (16:50 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 16 Aug 2010 19:50:24 +0000 (16:50 -0300)
manifests/rsync.pp
templates/rsync.conf.erb

index 7d925f2b13ae657c8e64a75882c7acc7c1d04f00..bcd1d1b6f5290150910e67b05f019df8acecc7b2 100644 (file)
@@ -1,5 +1,6 @@
 # Run rsync as part of a backupninja run.
 # Based on backupninja::rdiff
+# Right now just local origin and remote destination is supported.
 
 define backupninja::rsync(
   $order = 90, $ensure = present, $user = false, $home = false, $host = false,
index 8c61fc856cc3649d1981f8bb6ba3c3d5f565b729..594683cfc0a333552d2984465145e69834d26e5e 100644 (file)
@@ -12,7 +12,7 @@
 end -%>
 
 [source]
-<%- %w{from host port user testconnect include exclude ssh protocol rsync rssync_options exclude_vserver, numericids, compress, bandwidthlimit, remote_rsync, id_file, batch, batchbase, filelist, filelistbase}.each do |v|
+<%- %w{from testconnect include exclude ssh protocol rsync rssync_options exclude_vserver, numericids, compress, bandwidthlimit, remote_rsync, id_file, batch, batchbase, filelist, filelistbase}.each do |v|
     if has_variable?(v) and instance_variable_get("@#{v}").to_s != "false" -%>
 <%= v + ' = ' + instance_variable_get("@#{v}").to_s %>
 <%-