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 = {
|
||||
'/etc/oidentd.conf': {
|
||||
'content_type': 'mako',
|
||||
'triggers': {
|
||||
'svc_systemd:oidentd:restart',
|
||||
},
|
||||
},
|
||||
'/usr/local/lib/systemd/system/oidentd.service': {
|
||||
'triggers': {
|
||||
'action:systemd-reload',
|
||||
'svc_systemd:oidentd:restart',
|
||||
},
|
||||
files['/etc/oidentd.conf'] = {
|
||||
'content_type': 'mako',
|
||||
'triggers': {
|
||||
'svc_systemd:oidentd:restart',
|
||||
},
|
||||
}
|
||||
|
||||
svc_systemd = {
|
||||
'oidentd': {
|
||||
'needs': {
|
||||
'pkg_apt:oidentd',
|
||||
'file:/etc/oidentd.conf',
|
||||
'file:/usr/local/lib/systemd/system/oidentd.service',
|
||||
},
|
||||
files['/usr/local/lib/systemd/system/oidentd.service'] = {
|
||||
'triggers': {
|
||||
'action:systemd-reload',
|
||||
'svc_systemd:oidentd:restart',
|
||||
},
|
||||
}
|
||||
|
||||
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