yeah, that too
[mirror/dsa-puppet.git] / modules / portforwarder / templates / authorized_keys.erb
1 <%=
2 lines = []
3 config = YAML.load(File.open('/etc/puppet/modules/portforwarder/misc/config.yaml').read)
4 config.each_pair do |sourcehost, services|
5         services.each do |service|
6                 next if service['target_host'] != hostname
7
8                 sshkey = nil
9                 remote_ip = keyinfo[sourcehost][0]['ipHostNumber'].join(',')
10                 forward_to_port = service['target_port']
11                 local_bind = '127.0.0.2'
12
13                 lines << "# from #{sourcehost} on local port #{service['source_bind_port']}"
14                 if remote_ip.nil? or forward_to_port.nil? or local_bind.nil?
15                 #if sshkey.nil? or remote_ip.nil? or forward_to_port.nil? or local_bind.nil?
16                         lines << "# insufficient config values"
17                 else
18                         #lines << "from=\"#{remote_ip}\",command=\"/bin/nc -s #{local_bind} 127.0.0.1 #{forward_to_port}\",no-pty,no-port-forwarding,no-X11-forwarding,no-agent-forwarding #{sshkey}"
19                         lines << "#from=\"#{remote_ip}\",command=\"/bin/nc -s #{local_bind} 127.0.0.1 #{forward_to_port}\",no-pty,no-port-forwarding,no-X11-forwarding,no-agent-forwarding <sshkey here>"
20                 end
21         end
22 end
23 lines.join("\n")
24 %>