- 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
16 lines
356 B
Puppet
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',
|
|
],
|
|
},
|
|
}
|
|
}
|