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