summaryrefslogtreecommitdiff
path: root/manifests/rsync.pp
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-05-08 12:53:13 -0400
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-05-08 12:53:13 -0400
commit60931e1d8b25cdf99bbfdd5c9bed8f5d16709928 (patch)
tree99ac60c16aa6dec1fb3549c8f742c68337eea245 /manifests/rsync.pp
parentcfd5993600950d200d46e1884e4b0c898c023e60 (diff)
Set proper defaults for $ssh_dir and $authorized_keys_file, no reason to use false
Diffstat (limited to 'manifests/rsync.pp')
-rw-r--r--manifests/rsync.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/rsync.pp b/manifests/rsync.pp
index 8fbe639..6f0ca74 100644
--- a/manifests/rsync.pp
+++ b/manifests/rsync.pp
@@ -4,7 +4,7 @@
define backupninja::rsync(
$order = 90, $ensure = present,
$user = false, $home = "/home/${user}-${name}", $host = false,
- $ssh_dir_manage = true, $ssh_dir = false, $authorized_keys_file = false,
+ $ssh_dir_manage = true, $ssh_dir = "${home}/.ssh", $authorized_keys_file = 'authorized_keys',
$installuser = true, $keymanage = $backupninja::keymanage, $key = false, $backuptag = false,
$backupkeytype = $backupninja::keytype, $backupkeystore = $backupninja::keystore, $extras = false,
$nagios_description = 'backups', $subfolder = 'rsync',