puppet-prod/site/profiles/manifests/ssh/service.pp
Ben Vincent 9dcaafb8ba feat: lxc updates (#258)
- 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
2025-04-24 23:03:01 +10:00

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',
],
},
}
}