Puppet Class: ssh::client
- Defined in:
- manifests/client.pp
Overview
1 2 3 4 5 6 7 8 9 10 |
# File 'manifests/client.pp', line 1
class ssh::client {
include ssh
include ssh::client::config
concat::fragment { 'ssh_config-header':
order => '00',
target => $ssh::ssh_config,
content => template('ssh/ssh_config-header.erb'),
}
}
|