URL: https://github.com/SSSD/sssd/pull/33 Title: #33: SECRETS: Some small misc fixes + fixing #3168
fidencio commented: """ And here is the diff between the last series and the new one that's arriving in a few ... src/config/SSSDConfig/__init__.py.in | 1 + src/config/etc/sssd.api.conf | 1 + src/responder/secrets/local.c | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/SSSDConfig/__init__.py.in b/src/config/SSSDConfig/__init__.py.in index 15b9cd1..74c2ca5 100644 --- a/src/config/SSSDConfig/__init__.py.in +++ b/src/config/SSSDConfig/__init__.py.in @@ -120,6 +120,7 @@ option_strings = { # [secrets] 'provider': _('The provider where the secrets will be stored in'), + 'containers_nest_level': _('The maximum allowed number of nested containers'), # secrets - proxy 'proxy_url': _('The URL Custodia server is listening on'), 'auth_type': _('The method to use when authenticating to a Custodia server'), diff --git a/src/config/etc/sssd.api.conf b/src/config/etc/sssd.api.conf index f94c8d1..a7757dc 100644 --- a/src/config/etc/sssd.api.conf +++ b/src/config/etc/sssd.api.conf @@ -97,6 +97,7 @@ user_attributes = str, None, false [secrets] # Secrets service provider = str, None, false +containers_nest_level = int, None, false # Secrets service - proxy proxy_url = str, None, false auth_type = str, None, false diff --git a/src/responder/secrets/local.c b/src/responder/secrets/local.c index 06260f3..ec84537 100644 --- a/src/responder/secrets/local.c +++ b/src/responder/secrets/local.c @@ -334,7 +334,7 @@ done: } static int local_db_check_containers_nest_level(struct local_context *lctx, - struct ldb_dn *leaf_dn) + struct ldb_dn *leaf_dn) { int nest_level; """ See the full comment at https://github.com/SSSD/sssd/pull/33#issuecomment-250765831
_______________________________________________ sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org