summaryrefslogtreecommitdiff
path: root/puppet/modules/site_sshd/templates/authorized_keys.erb
blob: 51bdc5b3caa3b926873e7dbcc47092d4648c2e82 (plain)
1
2
3
4
5
6
7
8
9
10
# NOTICE: This file is autogenerated by Puppet
# all manually added keys will be overridden

<% @keys.sort.each do |user, hash| -%>
<% if user == 'monitor' -%>
command="/usr/bin/check_mk_agent",no-port-forwarding,no-x11-forwarding,no-agent-forwarding,no-pty,no-user-rc, <%=hash['type']-%> <%=hash['key']%> <%=user%> 
<% else -%>
<%=hash['type']-%> <%=hash['key']%> <%=user%> 
<% end -%>
<% end -%>