Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/confdb/confdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -1310,17 +1310,6 @@ static errno_t confdb_init_domain_timeouts(struct confdb_ctx *cdb,
goto done;
}

/* Override the computer timeout, if specified */
ret = get_entry_as_uint32(res->msgs[0], &domain->computer_timeout,
CONFDB_DOMAIN_COMPUTER_CACHE_TIMEOUT,
entry_cache_timeout);
if (ret != EOK) {
DEBUG(SSSDBG_FATAL_FAILURE,
"Invalid value for [%s]\n",
CONFDB_DOMAIN_COMPUTER_CACHE_TIMEOUT);
goto done;
}

/* Override the resolver timeout, if specified */
ret = get_entry_as_uint32(res->msgs[0], &domain->resolver_timeout,
CONFDB_DOMAIN_RESOLVER_CACHE_TIMEOUT,
Expand Down
2 changes: 0 additions & 2 deletions src/confdb/confdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@
#define CONFDB_DOMAIN_AUTOFS_CACHE_TIMEOUT "entry_cache_autofs_timeout"
#define CONFDB_DOMAIN_SUDO_CACHE_TIMEOUT "entry_cache_sudo_timeout"
#define CONFDB_DOMAIN_SSH_HOST_CACHE_TIMEOUT "entry_cache_ssh_host_timeout"
#define CONFDB_DOMAIN_COMPUTER_CACHE_TIMEOUT "entry_cache_computer_timeout"
#define CONFDB_DOMAIN_RESOLVER_CACHE_TIMEOUT "entry_cache_resolver_timeout"
#define CONFDB_DOMAIN_PWD_EXPIRATION_WARNING "pwd_expiration_warning"
#define CONFDB_DOMAIN_REFRESH_EXPIRED_INTERVAL "refresh_expired_interval"
Expand Down Expand Up @@ -412,7 +411,6 @@ struct sss_domain_info {
uint32_t autofsmap_timeout;
uint32_t sudo_timeout;
uint32_t ssh_host_timeout;
uint32_t computer_timeout;
uint32_t resolver_timeout;

uint32_t refresh_expired_interval;
Expand Down
1 change: 0 additions & 1 deletion src/config/cfg_rules.ini
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ option = entry_cache_service_timeout
option = entry_cache_autofs_timeout
option = entry_cache_sudo_timeout
option = entry_cache_ssh_host_timeout
option = entry_cache_computer_timeout
option = entry_cache_resolver_timeout
option = refresh_expired_interval
option = refresh_expired_interval_offset
Expand Down
13 changes: 0 additions & 13 deletions src/man/sssd.conf.5.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2898,19 +2898,6 @@ pam_json_services = gdm-switchable-auth
</listitem>
</varlistentry>

<varlistentry>
<term>entry_cache_computer_timeout (integer)</term>
<listitem>
<para>
How many seconds to keep the local computer
entry before asking the backend again
</para>
<para>
Default: entry_cache_timeout
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>offline_timeout (integer)</term>
<listitem>
Expand Down
Loading