aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-05-07 16:47:31 -0400
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2015-05-07 16:57:38 -0400
commitbde29cc21a400197bf4e4755ef0870aa3226d17d (patch)
treef1ca6416e9ddb52124fd9a5dd4f154fb403b8400
parentbb3764fa0bf225d93313efefb8d4e2e89282a465 (diff)
downloadpuppet-backupninja-bde29cc21a400197bf4e4755ef0870aa3226d17d.tar.gz
puppet-backupninja-bde29cc21a400197bf4e4755ef0870aa3226d17d.tar.bz2
Remove invalid $host parameter in backupninja::key declarations
-rw-r--r--manifests/duplicity.pp1
-rw-r--r--manifests/rdiff.pp2
-rw-r--r--manifests/rsync.pp1
3 files changed, 1 insertions, 3 deletions
diff --git a/manifests/duplicity.pp b/manifests/duplicity.pp
index cf57239..76cff8d 100644
--- a/manifests/duplicity.pp
+++ b/manifests/duplicity.pp
@@ -120,7 +120,6 @@ define backupninja::duplicity( $order = 90,
# the client's ssh key
backupninja::key { "${destuser}-${name}":
user => $destuser,
- host => $desthost,
createkey => $createkey,
keymanage => $keymanage,
keytype => $backupkeytype,
diff --git a/manifests/rdiff.pp b/manifests/rdiff.pp
index 9d01cf2..8395460 100644
--- a/manifests/rdiff.pp
+++ b/manifests/rdiff.pp
@@ -53,7 +53,7 @@ define backupninja::rdiff(
backupninja::key
{
- "${user}-${name}": user => $user, host => $host,
+ "${user}-${name}": user => $user,
keymanage => $keymanage,
keytype => $backupkeytype,
keystore => $backupkeystore,
diff --git a/manifests/rsync.pp b/manifests/rsync.pp
index 046f3f4..4296ce0 100644
--- a/manifests/rsync.pp
+++ b/manifests/rsync.pp
@@ -70,7 +70,6 @@ define backupninja::rsync(
backupninja::key { "${user}-${name}":
user => $user,
- host => $host,
keymanage => $keymanage,
keytype => $backupkeytype,
keystore => $backupkeystore,