diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-01-27 10:53:51 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-04 08:27:16 -0500 |
commit | c9aab1c04c399ca2d1abef74f6df22ced34983dc (patch) | |
tree | ce72d312ed54242f0b3717112d0774e705408a02 /src/responder/sudo/sudosrv.c | |
parent | 41ef946f3f74a46b9e26118116e4811e259b30ef (diff) | |
download | sssd-c9aab1c04c399ca2d1abef74f6df22ced34983dc.tar.gz sssd-c9aab1c04c399ca2d1abef74f6df22ced34983dc.tar.xz sssd-c9aab1c04c399ca2d1abef74f6df22ced34983dc.zip |
SUDO Integration - responder 'sudo_timed' option
https://fedorahosted.org/sssd/ticket/1116
Diffstat (limited to 'src/responder/sudo/sudosrv.c')
-rw-r--r-- | src/responder/sudo/sudosrv.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/responder/sudo/sudosrv.c b/src/responder/sudo/sudosrv.c index 6b7eae07b..c8e36adc9 100644 --- a/src/responder/sudo/sudosrv.c +++ b/src/responder/sudo/sudosrv.c @@ -142,6 +142,17 @@ int sudo_process_init(TALLOC_CTX *mem_ctx, return ret; } + /* Get sudo_timed option */ + ret = confdb_get_bool(sudo_ctx->rctx->cdb, sudo_ctx, + CONFDB_SUDO_CONF_ENTRY, CONFDB_SUDO_TIMED, + CONFDB_DEFAULT_SUDO_TIMED, + &sudo_ctx->timed); + if (ret != EOK) { + DEBUG(SSSDBG_FATAL_FAILURE, ("Error reading from confdb (%d) [%s]\n", + ret, strerror(ret))); + return ret; + } + /* Initialize in-memory cache */ ret = sudosrv_cache_init(sudo_ctx, 10, &sudo_ctx->cache); if (ret != EOK) { |