Compare commits

..

No commits in common. "9733a55942f5deaae97e976b004e71304e1133e5" and "663116c778e6658d5375382c3ee231fb32bc27e2" have entirely different histories.

5 changed files with 7 additions and 8 deletions

View file

@ -15,7 +15,7 @@ svc_systemd = {
'needs': [ 'needs': [
'pkg_apt:kea-dhcp4-server', 'pkg_apt:kea-dhcp4-server',
'file:/etc/kea/kea-dhcp4.conf', 'file:/etc/kea/kea-dhcp4.conf',
'svc_systemd:systemd-networkd.service:restart', 'svc_systemd:systemd-networkd:restart',
], ],
}, },
} }

View file

@ -3,12 +3,12 @@ defaults = {
'packages': { 'packages': {
'mariadb-server': { 'mariadb-server': {
'needs': { 'needs': {
#'zfs_dataset:tank/mariadb', 'zfs_dataset:tank/mariadb',
}, },
}, },
'mariadb-client': { 'mariadb-client': {
'needs': { 'needs': {
#'zfs_dataset:tank/mariadb', 'zfs_dataset:tank/mariadb',
}, },
}, },
}, },

View file

@ -19,6 +19,5 @@ directories = {
} }
svc_systemd = { svc_systemd = {
'systemd-networkd.service': {}, 'systemd-networkd': {},
} }

View file

@ -24,10 +24,10 @@ for name, unit in node.metadata.get('systemd/units').items():
path = f'/etc/systemd/network/{name}' path = f'/etc/systemd/network/{name}'
dependencies = { dependencies = {
'needed_by': [ 'needed_by': [
'svc_systemd:systemd-networkd.service', 'svc_systemd:systemd-networkd',
], ],
'triggers': [ 'triggers': [
'svc_systemd:systemd-networkd.service:restart', 'svc_systemd:systemd-networkd:restart',
], ],
} }
elif extension in ['timer', 'service', 'mount', 'swap', 'target']: elif extension in ['timer', 'service', 'mount', 'swap', 'target']:

View file

@ -12,7 +12,7 @@ defaults = {
'wireguard': { 'wireguard': {
'backports': node.os_version < (11,), 'backports': node.os_version < (11,),
'triggers': [ 'triggers': [
'svc_systemd:systemd-networkd.service:restart', 'svc_systemd:systemd-networkd:restart',
], ],
}, },
}, },