puppet-prod/site/profiles/manifests/ssh/service.pp
Ben Vincent fe30b13bf7 feat: lxc updates
- add virtual/lxc.yaml
- add crypto crypto-policies-scripts
- ensure ssh::server is managed
2025-04-24 22:58:05 +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',
],
},
}
}