bundles/oidentd: disable socket based activation

This commit is contained in:
Franzi 2023-10-22 08:58:31 +02:00
parent 08bf3b6565
commit ea42188904
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -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,
}