whitespace

This commit is contained in:
cronekorkn 2022-10-07 22:49:34 +02:00
parent c55b465c2f
commit 2d77fa8d10
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -1,8 +1,7 @@
from ipaddress import ip_interface
defaults = {
'network': {
}
'network': {},
}
@ -11,7 +10,7 @@ defaults = {
)
def units(metadata):
units = {}
for type, network in metadata.get('network').items():
units[f'{type}.network'] = {
'Match': {
@ -22,7 +21,7 @@ def units(metadata):
'IPv6AcceptRA': 'no',
}
}
for i in [4, 6]:
if network.get(f'ipv{i}', None):
units[f'{type}.network'].update({
@ -38,7 +37,7 @@ def units(metadata):
}
})
return {
'systemd': {
'units': units,