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.
Resolves: rhbz#
2412278
Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit
54f2c897a68daf93252ea20d070d45e561f26718)
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):