summaryrefslogtreecommitdiffstats
path: root/server/monitor
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2009-09-02 12:21:55 +0200
committerSimo Sorce <ssorce@redhat.com>2009-09-02 09:13:02 -0400
commit74ecf832de5bb406ecea702e9aaeec3eb4484631 (patch)
tree9c90ba50975f1df325c64a9d1624ed899ea92b1f /server/monitor
parentb641864b0250923e279dadd1866c7b8cea6c1372 (diff)
downloadsssd-74ecf832de5bb406ecea702e9aaeec3eb4484631.tar.gz
sssd-74ecf832de5bb406ecea702e9aaeec3eb4484631.tar.xz
sssd-74ecf832de5bb406ecea702e9aaeec3eb4484631.zip
remove the concept of a backend name
The data provider backends stored a name value besides the domain name to identify themselves to the data provider. This was the name of the id provider. Currently the backends can have different providers for id, authentication etc. So the name may be missleading. Also when there are more domains with the same id provider the name is not enough to identify the backend but the domain name is. As a consequence the backend name is removed completely and only the domain name is used for identification.
Diffstat (limited to 'server/monitor')
-rw-r--r--server/monitor/monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c
index 67e5b6e39..893de9b11 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;