summaryrefslogtreecommitdiffstats
path: root/src/monitor
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2016-11-22 17:47:51 +0100
committerJakub Hrozek <jhrozek@redhat.com>2017-02-15 14:53:54 +0100
commitf9f1310ba1b87223f8d4d935b30b8238e5c00022 (patch)
tree37cb19846cb3ce34cb9425575d01f7740d6189a6 /src/monitor
parent8bdb8c0970dc9acb5b0a54dab0bae306ca964944 (diff)
downloadsssd-f9f1310ba1b87223f8d4d935b30b8238e5c00022.tar.gz
sssd-f9f1310ba1b87223f8d4d935b30b8238e5c00022.tar.xz
sssd-f9f1310ba1b87223f8d4d935b30b8238e5c00022.zip
MONITOR: Remove checks for sssd.conf changes
This feature was if-ed out for many years and since it's quite unlikely we will re-enable the feature in the foreseeable future, let's just remove this code. Reviewed-by: Pavel Březina <pbrezina@redhat.com>
Diffstat (limited to 'src/monitor')
-rw-r--r--src/monitor/monitor.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c
index 1fa3d4baf..71719917b 100644
--- a/src/monitor/monitor.c
+++ b/src/monitor/monitor.c
@@ -2296,19 +2296,6 @@ static int monitor_process_init(struct mt_ctx *ctx,
ret = sss_sigchld_init(ctx, ctx->ev, &ctx->sigchld_ctx);
if (ret != EOK) return ret;
-#if 0
- This feature is incomplete and can leave the SSSD in a bad state if the
- config file is changed while the SSSD is running.
-
- Uncomment this once the backends are honoring reloadConfig()
-
- /* Watch for changes to the confdb config file */
- ret = monitor_config_file(ctx, ctx, config_file, monitor_signal_reconf,
- true);
- if (ret != EOK) {
- return ret;
- }
-#endif
/* Watch for changes to the DNS resolv.conf */
ret = monitor_config_file(ctx, ctx, RESOLV_CONF_PATH,
monitor_update_resolv, false);