wip
This commit is contained in:
parent
c867fe5ff0
commit
a08b24dca5
5 changed files with 18 additions and 121 deletions
|
@ -1,24 +1,14 @@
|
||||||
assert node.has_bundle('systemd')
|
assert node.has_bundle('systemd')
|
||||||
|
|
||||||
from bundlewrap.exceptions import BundleError
|
|
||||||
|
|
||||||
|
|
||||||
files = {
|
files = {
|
||||||
'/etc/network/interfaces': {
|
'/etc/network/interfaces': {
|
||||||
'delete': True,
|
'delete': True,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
if node.metadata.get('systemd-networkd/enable-resolved', False):
|
files['/etc/resolv.conf'] = {
|
||||||
symlinks['/etc/resolv.conf'] = {
|
'content_type': 'mako',
|
||||||
'target': '/run/systemd/resolve/stub-resolv.conf',
|
}
|
||||||
}
|
|
||||||
svc_systemd['systemd-resolved'] = {}
|
|
||||||
else:
|
|
||||||
files['/etc/resolv.conf'] = {
|
|
||||||
'content_type': 'mako',
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
directories = {
|
directories = {
|
||||||
'/etc/systemd/network': {
|
'/etc/systemd/network': {
|
||||||
|
@ -26,108 +16,13 @@ directories = {
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
mac_host_prefix = '%04x' % (node.magic_number % 65534)
|
|
||||||
generated_mac = f'52:54:00:{mac_host_prefix[0:2]}:{mac_host_prefix[2:4]}:{{}}'
|
|
||||||
|
|
||||||
# Don't use .get() here. We might end up with a node without a network
|
|
||||||
# config!
|
|
||||||
for interface, config in node.metadata['interfaces'].items():
|
for interface, config in node.metadata['interfaces'].items():
|
||||||
if config.get('dhcp', False):
|
files[f'/etc/systemd/network/{interface}.network'] = {
|
||||||
if 'vlans' in config:
|
'source': 'interface.network',
|
||||||
raise BundleError(f'{node.name} interface {interface} cannot use vlans and dhcp!')
|
|
||||||
template = 'template-iface-dhcp.network'
|
|
||||||
else:
|
|
||||||
template = 'template-iface-nodhcp.network'
|
|
||||||
|
|
||||||
if '.' in interface:
|
|
||||||
vlan_id = int(interface.split('.')[1])
|
|
||||||
vlan_hex = '%02x' % (vlan_id % 255)
|
|
||||||
files['/etc/systemd/network/60-iface-{}.netdev'.format(interface)] = {
|
|
||||||
'source': 'template-iface-vlan.netdev',
|
|
||||||
'content_type': 'mako',
|
|
||||||
'context': {
|
|
||||||
'interface': interface,
|
|
||||||
'vlan': vlan_id,
|
|
||||||
'mac': generated_mac.format(vlan_hex)
|
|
||||||
},
|
|
||||||
'needed_by': {
|
|
||||||
'svc_systemd:systemd-networkd',
|
|
||||||
},
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:systemd-networkd:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
weight = 61
|
|
||||||
else:
|
|
||||||
weight = 50
|
|
||||||
|
|
||||||
if not config.get('ignore', False):
|
|
||||||
files['/etc/systemd/network/{}-iface-{}.network'.format(weight, interface)] = {
|
|
||||||
'source': template,
|
|
||||||
'content_type': 'mako',
|
|
||||||
'context': {
|
|
||||||
'interface': interface,
|
|
||||||
'config': config,
|
|
||||||
},
|
|
||||||
'needed_by': {
|
|
||||||
'svc_systemd:systemd-networkd',
|
|
||||||
},
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:systemd-networkd:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for bond, config in node.metadata.get('systemd-networkd/bonds', {}).items():
|
|
||||||
files['/etc/systemd/network/20-bond-{}.netdev'.format(bond)] = {
|
|
||||||
'source': 'template-bond.netdev',
|
|
||||||
'content_type': 'mako',
|
'content_type': 'mako',
|
||||||
'context': {
|
'context': {
|
||||||
'bond': bond,
|
'interface': interface,
|
||||||
'mode': config.get('mode', '802.3ad'),
|
'config': config,
|
||||||
'prio': config.get('priority', '32768'),
|
|
||||||
},
|
|
||||||
'needed_by': {
|
|
||||||
'svc_systemd:systemd-networkd',
|
|
||||||
},
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:systemd-networkd:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
files['/etc/systemd/network/21-bond-{}.network'.format(bond)] = {
|
|
||||||
'source': 'template-bond.network',
|
|
||||||
'content_type': 'mako',
|
|
||||||
'context': {
|
|
||||||
'bond': bond,
|
|
||||||
'match': config['match'],
|
|
||||||
},
|
|
||||||
'needed_by': {
|
|
||||||
'svc_systemd:systemd-networkd',
|
|
||||||
},
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:systemd-networkd:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for brname, config in node.metadata.get('systemd-networkd/bridges', {}).items():
|
|
||||||
files['/etc/systemd/network/30-bridge-{}.netdev'.format(brname)] = {
|
|
||||||
'source': 'template-bridge.netdev',
|
|
||||||
'content_type': 'mako',
|
|
||||||
'context': {
|
|
||||||
'bridge': brname,
|
|
||||||
},
|
|
||||||
'needed_by': {
|
|
||||||
'svc_systemd:systemd-networkd',
|
|
||||||
},
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:systemd-networkd:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
files['/etc/systemd/network/31-bridge-{}.network'.format(brname)] = {
|
|
||||||
'source': 'template-bridge.network',
|
|
||||||
'content_type': 'mako',
|
|
||||||
'context': {
|
|
||||||
'bridge': brname,
|
|
||||||
'match': config['match'],
|
|
||||||
},
|
},
|
||||||
'needed_by': {
|
'needed_by': {
|
||||||
'svc_systemd:systemd-networkd',
|
'svc_systemd:systemd-networkd',
|
||||||
|
|
|
@ -28,12 +28,8 @@ for name, service in node.metadata.get('systemd/services').items():
|
||||||
# create unit file
|
# create unit file
|
||||||
unit_path = f'/etc/systemd/system/{name}.service'
|
unit_path = f'/etc/systemd/system/{name}.service'
|
||||||
files[unit_path] = {
|
files[unit_path] = {
|
||||||
'source': 'unitfile',
|
'content': repo.libs.systemd.generate_unitfile(content_data),
|
||||||
'content_type': 'mako',
|
'triggers': [
|
||||||
'context': {
|
|
||||||
'data': content_data,
|
|
||||||
},
|
|
||||||
'triggers': [
|
|
||||||
'action:systemd-reload',
|
'action:systemd-reload',
|
||||||
f'svc_systemd:{name}:restart',
|
f'svc_systemd:{name}:restart',
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
% for i, (segment, options) in enumerate(data.items()):
|
from mako.template import Template
|
||||||
% if i > 0:
|
|
||||||
|
template = '''
|
||||||
|
% for i, (segment, options) in enumerate(data.items()):
|
||||||
|
|
||||||
% endif
|
|
||||||
[${segment}]
|
[${segment}]
|
||||||
% for option, value in options.items():
|
% for option, value in options.items():
|
||||||
% if isinstance(value, dict):
|
% if isinstance(value, dict):
|
||||||
|
@ -17,3 +18,7 @@ ${option}=${value}
|
||||||
% endif
|
% endif
|
||||||
% endfor
|
% endfor
|
||||||
% endfor
|
% endfor
|
||||||
|
'''
|
||||||
|
|
||||||
|
def generate_unitfile(data):
|
||||||
|
return Template(template).render(data=data).lstrip()
|
|
@ -82,6 +82,7 @@
|
||||||
'cpu': 2,
|
'cpu': 2,
|
||||||
},
|
},
|
||||||
'wireguard': {
|
'wireguard': {
|
||||||
|
# ip r add 10.0.0.0/24 via 172.19.136.2 dev wg0
|
||||||
'my_ip': '172.19.136.2/22',
|
'my_ip': '172.19.136.2/22',
|
||||||
'peers': {
|
'peers': {
|
||||||
'home.server': {},
|
'home.server': {},
|
||||||
|
|
Loading…
Reference in a new issue