diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2009-11-24 21:16:40 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-01 15:59:38 -0500 |
commit | 3fc84f21bd715c4cece722231af933a1981bb6e7 (patch) | |
tree | 8fa09c64af1c47616db575b10def6ad1b62f8b49 /server/tools/sss_groupadd.c | |
parent | 6a1deabbc1918de34de65595142bbb2895d90ed9 (diff) | |
download | sssd-3fc84f21bd715c4cece722231af933a1981bb6e7.tar.gz sssd-3fc84f21bd715c4cece722231af933a1981bb6e7.tar.bz2 sssd-3fc84f21bd715c4cece722231af933a1981bb6e7.zip |
Better error message when there is no local domain configured
Fixes: #235
Diffstat (limited to 'server/tools/sss_groupadd.c')
-rw-r--r-- | server/tools/sss_groupadd.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/server/tools/sss_groupadd.c b/server/tools/sss_groupadd.c index 82d4573d..15eed100 100644 --- a/server/tools/sss_groupadd.c +++ b/server/tools/sss_groupadd.c @@ -82,7 +82,11 @@ int main(int argc, const char **argv) ret = init_sss_tools(&tctx); if (ret != EOK) { DEBUG(1, ("init_sss_tools failed (%d): %s\n", ret, strerror(ret))); - ERROR("Error initializing the tools\n"); + if (ret == ENOENT) { + ERROR("Error initializing the tools - no local domain\n"); + } else { + ERROR("Error initializing the tools\n"); + } ret = EXIT_FAILURE; goto fini; } |