diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-08-26 22:29:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-08-26 22:29:24 -0300 |
commit | 564244547ab684e9b63d48fcabbe4f6d377d022e (patch) | |
tree | 5ad8fc0d863712ba0a8f2081deb94a64758b71c8 | |
parent | 02d8a40959f4376742d6c813aa3e44e79c56c429 (diff) | |
download | puppet-backupninja-564244547ab684e9b63d48fcabbe4f6d377d022e.tar.gz puppet-backupninja-564244547ab684e9b63d48fcabbe4f6d377d022e.tar.bz2 |
Adding backupkeytype parameter at backupninja::rdiff
-rw-r--r-- | manifests/rdiff.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/rdiff.pp b/manifests/rdiff.pp index b1dd7d2..a8956f3 100644 --- a/manifests/rdiff.pp +++ b/manifests/rdiff.pp @@ -25,7 +25,7 @@ define backupninja::rdiff( "/home", "/usr/local/*bin", "/var/lib/dpkg/status*" ], $vsinclude = false, $keep = 30, $sshoptions = false, $options = false, $ssh_dir_manage = true, $ssh_dir = false, $authorized_keys_file = false, $installuser = true, $installkey = true, - $backuptag = false, $home = false) + $backuptag = false, $home = false, $backupkeytype = false) { include backupninja::client case $type { @@ -42,7 +42,7 @@ define backupninja::rdiff( "${user}-${name}": user => $user, host => $host, dir => $real_home, manage_ssh_dir => $ssh_dir_manage, ssh_dir => $ssh_dir, authorized_keys_file => $authorized_keys_file, installuser => $installuser, - backuptag => $backuptag + backuptag => $backuptag, keytype => $backupkeytype, } backupninja::client::key |