- add virtual/lxc.yaml - add crypto crypto-policies-scripts - ensure ssh::server is managed Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/258
18 lines
379 B
Puppet
18 lines
379 B
Puppet
# profiles::ssh::service
|
|
# saz-ssh manages the service, this is just some additional stuff
|
|
class profiles::ssh::service {
|
|
|
|
include ssh::server
|
|
|
|
# set sshd to start
|
|
systemd::manage_dropin { 'after-network-online.conf':
|
|
ensure => present,
|
|
unit => 'sshd.service',
|
|
unit_entry => {
|
|
'After' => [
|
|
'network-online.target',
|
|
],
|
|
},
|
|
}
|
|
}
|