bundlewrap/bundles/systemd-networkd/items.py
mwiegand a08b24dca5 wip
2021-06-24 23:47:45 +02:00

37 lines
758 B
Python

assert node.has_bundle('systemd')
files = {
'/etc/network/interfaces': {
'delete': True,
},
}
files['/etc/resolv.conf'] = {
'content_type': 'mako',
}
directories = {
'/etc/systemd/network': {
'purge': True,
},
}
for interface, config in node.metadata['interfaces'].items():
files[f'/etc/systemd/network/{interface}.network'] = {
'source': 'interface.network',
'content_type': 'mako',
'context': {
'interface': interface,
'config': config,
},
'needed_by': {
'svc_systemd:systemd-networkd',
},
'triggers': {
'svc_systemd:systemd-networkd:restart',
},
}
svc_systemd = {
'systemd-networkd': {},
}