puppet-prod/site/profiles/manifests/ssh/service.pp
Ben Vincent 4759c7e9d3 feat: continue incus implementation
- migrate to systemd-networkd
- setup dummy, bridge and static/ethernet interfaces
- manage sshd.service droping to start ssh after networking is online
- enable ip forewarding
- add fastpool/data/incus dataset
- enable ospf and frr
- add loopback0 as ssh listenaddress
- add loopback1/2 for ceph cluster/public traffic
2025-04-06 15:55:32 +10:00

16 lines
356 B
Puppet

# profiles::ssh::service
# saz-ssh manages the service, this is just some additional stuff
class profiles::ssh::service {
# set sshd to start
systemd::manage_dropin { 'after-network-online.conf':
ensure => present,
unit => 'sshd.service',
unit_entry => {
'After' => [
'network-online.target',
],
},
}
}