This will enable the config watch sidecar to signal processes
with a SIGHUP to tell them to reload configuration when config
watch has detected a configuration change. Currently only used
by keybridge.
Signed-off-by: John Mulligan <jmulligan@redhat.com>
return 'configwatch'
def args(self) -> List[str]:
- return super().args() + ['update-config', '--watch']
+ return super().args() + [
+ 'update-config',
+ '--watch',
+ f'--signal-pids-dir={_WANT_SIGNAL_DIR}',
+ ]
class SMBMetricsContainer(ContainerCommon):