bundlewrap/bundles/wide-dhcp6c/items.py
Franzi f52df58517
All checks were successful
bundlewrap/pipeline/head This commit looks good
bundles: code style improvements
2021-02-12 20:45:41 +01:00

59 lines
1.5 KiB
Python

if node.has_bundle('pppd'):
files['/etc/ppp/ip-up.d/wide-dhcp6c'] = {
'source': 'ip-up',
'content_type': 'mako',
'context': {
'source': node.metadata['wide-dhcp6c']['source'],
},
'mode': '0755',
}
files['/etc/ppp/ip-down.d/wide-dhcp6c'] = {
'source': 'ip-down',
'content_type': 'mako',
'context': {
'targets': node.metadata['wide-dhcp6c']['targets'],
},
'mode': '0755',
}
# Will be started and stopped by pppd.
SHOULD_BE_RUNNING = None
SHOULD_BE_ENABLED = False
else:
SHOULD_BE_RUNNING = True
SHOULD_BE_ENABLED = True
files['/etc/wide-dhcpv6/dhcp6c.conf'] = {
'content_type': 'mako',
'context': {
'source': node.metadata['wide-dhcp6c']['source'],
'targets': node.metadata['wide-dhcp6c']['targets'],
'subnet_len': node.metadata['wide-dhcp6c']['subnet_len'],
},
'triggers': {
'svc_systemd:wide-dhcpv6-client:restart',
},
}
files['/etc/systemd/system/wide-dhcpv6-client.service'] = {
'content_type': 'mako',
'context': {
'source': node.metadata['wide-dhcp6c']['source'],
},
'triggers': {
'action:systemd-reload',
'svc_systemd:wide-dhcpv6-client:restart',
},
}
svc_systemd = {
'wide-dhcpv6-client': {
'running': SHOULD_BE_RUNNING,
'enabled': SHOULD_BE_ENABLED,
'needs': {
'file:/etc/systemd/system/wide-dhcpv6-client.service',
'file:/etc/wide-dhcpv6/dhcp6c.conf',
},
},
}