systemd-networkd: first draft

This commit is contained in:
Franzi 2020-06-06 10:18:25 +02:00
parent aa477322ac
commit fbb4e2f7a5
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 59 additions and 0 deletions

View file

@ -0,0 +1,22 @@
assert node.has_bundle('systemd')
files = {
'/etc/network/interfaces': {},
}
for interface, config in node.metadata.get('interfaces', {}).items():
files['/etc/systemd/network/10-{}.network'.format(interface)] = {
'source': 'template.network',
'content_type': 'mako',
'context': {
'interface': interface,
'config': config,
},
'triggers': {
'svc_systemd:systemd-networkd:restart',
},
}
svc_systemd = {
'systemd-networkd': {},
}