diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-01-25 11:44:04 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-01-25 11:44:04 -0200 |
commit | 8395818ae9779f695b306f2c20e1a0daf274d34b (patch) | |
tree | 98efda248dd833408dc4ea3262640b8a1581f412 | |
parent | 10a6a1ed421e4d01113c807cd6d75c5be468fd23 (diff) | |
download | puppet-nodo-8395818ae9779f695b306f2c20e1a0daf274d34b.tar.gz puppet-nodo-8395818ae9779f695b306f2c20e1a0daf274d34b.tar.bz2 |
Fixing real host at tunnel class (2)
-rw-r--r-- | manifests/subsystems/tunnel.pp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/manifests/subsystems/tunnel.pp b/manifests/subsystems/tunnel.pp index 2253b58..e7e0fe4 100644 --- a/manifests/subsystems/tunnel.pp +++ b/manifests/subsystems/tunnel.pp @@ -22,10 +22,9 @@ class tunnel { Tunnel_server_realize <<| tag == "${::fqdn}" |>> define setup($ensure = present, $user = $hostname, $host, $localport, $hostport, $sshport = '22', $keytype = 'rsa', $root_mail_recipient = hiera('nodo::root_mail_recipient', 'nobody')) { - $dir = "/var/backups/remote/${user}.${::domain}" - $tag = "backupninja-${::fqdn}" - $ssh_dir = "${dir}/.ssh" - $real_host = "${host}.${::domain}" + $dir = "/var/backups/remote/${user}.${::domain}" + $tag = "backupninja-${::fqdn}" + $ssh_dir = "${dir}/.ssh" autossh::tunnel { $name: ensure => $ensure, @@ -38,9 +37,9 @@ class tunnel { sshport => $sshport, } - if !defined(Tunnel_server_realize["${::fqdn}@${real_host}"]) { + if !defined(Tunnel_server_realize["${::hostname}@${host}"]) { # this defines just maps that $host host an user environment for $fdqn - @@tunnel_server_realize { "${fqdn}@${real_host}": + @@tunnel_server_realize { "${::hostname}@${host}": host => $::fqdn, tag => $host, } |