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': {
'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,
}