diff options
Diffstat (limited to 'server/monitor')
-rw-r--r-- | server/monitor/monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c index 67e5b6e..893de9b 100644 --- a/server/monitor/monitor.c +++ b/server/monitor/monitor.c @@ -1040,10 +1040,10 @@ static int get_provider_config(struct mt_ctx *ctx, const char *name, /* if there are no custom commands, build a default one */ if (!svc->command) { svc->command = talloc_asprintf(svc, - "%s/sssd_be -d %d%s --provider %s --domain %s", + "%s/sssd_be -d %d%s --domain %s", SSSD_LIBEXEC_PATH, debug_level, (debug_timestamps?" --debug-timestamps":""), - svc->provider, svc->name); + svc->name); if (!svc->command) { talloc_free(svc); return ENOMEM; |