bundles/oidentd: disable socket based activation
This commit is contained in:
parent
08bf3b6565
commit
ea42188904
1 changed files with 21 additions and 19 deletions
|
@ -1,24 +1,26 @@
|
||||||
files = {
|
files['/etc/oidentd.conf'] = {
|
||||||
'/etc/oidentd.conf': {
|
'content_type': 'mako',
|
||||||
'content_type': 'mako',
|
'triggers': {
|
||||||
'triggers': {
|
'svc_systemd:oidentd:restart',
|
||||||
'svc_systemd:oidentd:restart',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'/usr/local/lib/systemd/system/oidentd.service': {
|
|
||||||
'triggers': {
|
|
||||||
'action:systemd-reload',
|
|
||||||
'svc_systemd:oidentd:restart',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
svc_systemd = {
|
files['/usr/local/lib/systemd/system/oidentd.service'] = {
|
||||||
'oidentd': {
|
'triggers': {
|
||||||
'needs': {
|
'action:systemd-reload',
|
||||||
'pkg_apt:oidentd',
|
'svc_systemd:oidentd:restart',
|
||||||
'file:/etc/oidentd.conf',
|
|
||||||
'file:/usr/local/lib/systemd/system/oidentd.service',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
svc_systemd['oidentd'] = {
|
||||||
|
'needs': {
|
||||||
|
'pkg_apt:oidentd',
|
||||||
|
'file:/etc/oidentd.conf',
|
||||||
|
'file:/usr/local/lib/systemd/system/oidentd.service',
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
svc_systemd['oidentd.socket'] = {
|
||||||
|
'running': False,
|
||||||
|
'enabled': False,
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue