Compare commits
No commits in common. "9733a55942f5deaae97e976b004e71304e1133e5" and "663116c778e6658d5375382c3ee231fb32bc27e2" have entirely different histories.
9733a55942
...
663116c778
5 changed files with 7 additions and 8 deletions
|
@ -15,7 +15,7 @@ svc_systemd = {
|
|||
'needs': [
|
||||
'pkg_apt:kea-dhcp4-server',
|
||||
'file:/etc/kea/kea-dhcp4.conf',
|
||||
'svc_systemd:systemd-networkd.service:restart',
|
||||
'svc_systemd:systemd-networkd:restart',
|
||||
],
|
||||
},
|
||||
}
|
||||
|
|
|
@ -3,12 +3,12 @@ defaults = {
|
|||
'packages': {
|
||||
'mariadb-server': {
|
||||
'needs': {
|
||||
#'zfs_dataset:tank/mariadb',
|
||||
'zfs_dataset:tank/mariadb',
|
||||
},
|
||||
},
|
||||
'mariadb-client': {
|
||||
'needs': {
|
||||
#'zfs_dataset:tank/mariadb',
|
||||
'zfs_dataset:tank/mariadb',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -19,6 +19,5 @@ directories = {
|
|||
}
|
||||
|
||||
svc_systemd = {
|
||||
'systemd-networkd.service': {},
|
||||
'systemd-networkd': {},
|
||||
}
|
||||
|
||||
|
|
|
@ -24,10 +24,10 @@ for name, unit in node.metadata.get('systemd/units').items():
|
|||
path = f'/etc/systemd/network/{name}'
|
||||
dependencies = {
|
||||
'needed_by': [
|
||||
'svc_systemd:systemd-networkd.service',
|
||||
'svc_systemd:systemd-networkd',
|
||||
],
|
||||
'triggers': [
|
||||
'svc_systemd:systemd-networkd.service:restart',
|
||||
'svc_systemd:systemd-networkd:restart',
|
||||
],
|
||||
}
|
||||
elif extension in ['timer', 'service', 'mount', 'swap', 'target']:
|
||||
|
|
|
@ -12,7 +12,7 @@ defaults = {
|
|||
'wireguard': {
|
||||
'backports': node.os_version < (11,),
|
||||
'triggers': [
|
||||
'svc_systemd:systemd-networkd.service:restart',
|
||||
'svc_systemd:systemd-networkd:restart',
|
||||
],
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue