fqdn instead of hostname
[mirror/dsa-puppet.git] / modules / portforwarder / templates / authorized_keys.erb
index 0a15aa6..0bfc8c1 100644 (file)
@@ -4,8 +4,8 @@ config = YAML.load(File.open('/etc/puppet/modules/portforwarder/misc/config.yaml
 config.each_pair do |sourcehost, services|
        lines << "# sourcehost is #{sourcehost}"
        services.each do |service|
-               lines << "# targethost is #{service['target_host']}, my hostname #{hostname}"
-               next if service['target_host'] != hostname
+               lines << "# targethost is #{service['target_host']}, my hostname #{hostname}, fqdn is #{fqdn}"
+               next if service['target_host'] != fqdn
 
                sshkey = nil
                remote_ip = keyinfo[sourcehost][0]['ipHostNumber'].join(',')