aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-16 22:06:32 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-16 22:06:32 -0300
commit3eed9efd2684766ca3d82b1eb354848b6a7e9015 (patch)
treed9c310e1879e05ae25c8f483aefa2a93e6b7b614
parent06412e03431c2ed125481486d34f6e7efd09f1df (diff)
downloadpuppet-backupninja-3eed9efd2684766ca3d82b1eb354848b6a7e9015.tar.gz
puppet-backupninja-3eed9efd2684766ca3d82b1eb354848b6a7e9015.tar.bz2
Removing comments
-rw-r--r--manifests/rsync.pp14
1 files changed, 6 insertions, 8 deletions
diff --git a/manifests/rsync.pp b/manifests/rsync.pp
index 64a42ba..f973004 100644
--- a/manifests/rsync.pp
+++ b/manifests/rsync.pp
@@ -1,6 +1,5 @@
# 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,
@@ -9,34 +8,33 @@ define backupninja::rsync(
$home = false, $backupkeytype = "rsa", $backupkeystore = false, $extras = false,
$nagios2_description = 'backups', $subfolder = 'rsync',
- # general
$log = false, $partition = false, $fscheck = false, $read_only = false,
$mountpoint = false, $backupdir = false, $format = false, $days = '5',
$keepdaily = false, $keepweekly = false, $keepmonthly = false, $lockfile = false,
$nicelevel = 0, $enable_mv_timestamp_bug = false, $tmp = false, $multiconnection = false,
- # source
- $from = 'local', $exclude_vserver = false,
+ $exclude_vserver = false,
$exclude = [ "/home/*/.gnupg", "/home/*/.local/share/Trash", "/home/*/.Trash",
"/home/*/.thumbnails", "/home/*/.beagle", "/home/*/.aMule",
"/home/*/gtk-gnutella-downloads" ],
$include = [ "/var/spool/cron/crontabs", "/var/backups", "/etc", "/root",
"/home", "/usr/local/*bin", "/var/lib/dpkg/status*" ],
- # dest
- $dest = 'remote', $testconnect = false, $protocol = false, $ssh = false, $port = false,
+ $testconnect = false, $protocol = false, $ssh = false, $port = false,
$bandwidthlimit = false, $remote_rsync = false, $id_file = false,
$batch = false, $batchbase = false, $numericids = false, $compress = false,
$fakesuper = false,
- # services
$initscripts = false, $service = false,
- # system
$rm = false, $cp = false, $touch = false, $mv = false, $fsck = false)
{
include backupninja::client::rsync
+ # Right now just local origin and remote destination is supported.
+ $from = local
+ $dest = remote
+
case $dest {
'remote': {
case $host { false: { err("need to define a host for remote backups!") } }