Searched refs:local (Results 1 - 8 of 8) sorted by relevance

/sssd/src/tests/
H A Dpython-test.py37 self.local = pysss.local()
142 "Test that the local backed binding can be instantiated"
143 local = pysss.local()
144 self.assert_(local.__class__, "<type 'sss.local'>")
152 "Test adding a local user"
154 self.local.useradd(self.username)
160 "Test adding a local use
[all...]
/sssd/src/tools/
H A Dsss_groupdel.c80 ERROR("Error initializing the tools - no local domain\n");
88 /* if the domain was not given as part of FQDN, default to local domain */
102 if ((tctx->octx->gid < tctx->local->id_min) ||
103 (tctx->local->id_max && tctx->octx->gid > tctx->local->id_max)) {
132 ERROR("No such group in local domain. "
133 "Removing groups only allowed in local domain.\n");
H A Dtools_util.c57 ret = sssd_domain_init(ctx, ctx->confdb, "local", DB_PATH, &ctx->local);
64 ctx->sysdb = ctx->local->sysdb;
193 /* only the local domain, whatever named is allowed in tools */
194 if (strcasecmp(domain, tctx->local->name) != 0) {
200 if (tctx->local->fqnames) {
225 groupinfo->domain = tctx->local;
301 ret = sss_names_init(tctx, tctx->confdb, tctx->local->name, &tctx->snctx);
315 tctx->octx->domain = tctx->local;
526 tctx->local
[all...]
H A Dtools_util.h51 struct sss_domain_info *local; member in struct:tools_ctx
H A Dsss_userdel.c198 ERROR("Error initializing the tools - no local domain\n");
206 /* if the domain was not given as part of FQDN, default to local domain */
232 if ((tctx->octx->uid < tctx->local->id_min) ||
233 (tctx->local->id_max && tctx->octx->uid > tctx->local->id_max)) {
324 ERROR("No such user in local domain. "
325 "Removing users only allowed in local domain.\n");
H A Dtools_mc_util.c317 tctx->local->name);
330 ret = sysdb_search_group_by_name(tmpctx, tctx->local, internal_name, attrs,
359 tctx->local->case_preserve, 0);
H A Dsss_groupshow.c714 ERROR("Error initializing the tools - no local domain\n");
722 /* if the domain was not given as part of FQDN, default to local domain */
732 tctx->local, pc_recursive, tctx->octx->name, &root);
735 ret = group_show_mpg(tctx, tctx->local, tctx->octx->name, &root);
744 ERROR("No such group in local domain. "
745 "Printing groups only allowed in local domain.\n");
/sssd/src/python/
H A Dpysss.c83 struct sss_domain_info *local; member in struct:__anon20
121 tctx->local = self->local;
130 octx->domain = self->local;
832 * The sss.local destructor
841 * The sss.local constructor
880 ret = sssd_domain_init(self->mem_ctx, self->confdb, "local",
881 DB_PATH, &self->local);
887 self->sysdb = self->local->sysdb;
900 * sss.local objec
[all...]

Completed in 1511 milliseconds