diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-17 12:14:39 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-17 14:27:32 -0500 |
commit | 457927f4210a0c41289521d55617b6d6bb6a46e0 (patch) | |
tree | 39a29f3e1c86d74602eaece4bf146bf3672925dc /src/config/SSSDConfig.py | |
parent | 1a63155b0797c2b1963424e5c0f5d3a62f8cc7cc (diff) | |
download | sssd-457927f4210a0c41289521d55617b6d6bb6a46e0.tar.gz sssd-457927f4210a0c41289521d55617b6d6bb6a46e0.tar.xz sssd-457927f4210a0c41289521d55617b6d6bb6a46e0.zip |
RESPONDERS: Make the fd_limit setting configurable
This code will now attempt first to see if it has privilege to set
the value as specified, and if not it will fall back to the
previous behavior. So on systems with the CAP_SYS_RESOURCE
capability granted to SSSD, it will be able to ignore the
limits.conf hard limit.
https://fedorahosted.org/sssd/ticket/1197
Diffstat (limited to 'src/config/SSSDConfig.py')
-rw-r--r-- | src/config/SSSDConfig.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/SSSDConfig.py b/src/config/SSSDConfig.py index a545800b8..0ff5a6c05 100644 --- a/src/config/SSSDConfig.py +++ b/src/config/SSSDConfig.py @@ -43,6 +43,7 @@ option_strings = { 'timeout' : _('Ping timeout before restarting service'), 'command' : _('Command to start service'), 'reconnection_retries' : _('Number of times to attempt connection to Data Providers'), + 'fd_limit' : _('The number of file descriptors that may be opened by this responder'), # [sssd] 'services' : _('SSSD Services to start'), |