Commits on Source (29)
-
Justin Stephenson authored
error: line 45: Illegal char '-' (0x2d) in: Version: sssd-2-7 Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Pavel Březina <pbrezina@redhat.com> (cherry picked from commit ab89455b)
587fe968 -
Alexey Tikhonov authored
Reviewed-by: Pavel Březina <pbrezina@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit a5403f78)
e6f94e25 -
Pavel Březina authored
This syslog message would also appear when calling other tools like sss_cache which is confusing. We return specific error code instead and let the error be syslogged in the monitor in monitor.c:main (this is already implemented). Resolves: https://github.com/SSSD/sssd/issues/6387 :fixes: A regression when running sss_cache when no SSSD domain is enabled would produce a syslog critical message was fixed. Reviewed-by: Alejandro López <allopez@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit b38fdc81)
a6d52145 -
Pavel Březina authored
Reading sssd/domains option is no longer sufficient since domains can be enabled through domain/enabled. Reviewed-by: Alejandro López <allopez@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit 4da86136)
1df02947 -
Pavel Březina authored
Reviewed-by: Alejandro López <allopez@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit 64c22dd1)
a6312c46 -
Pavel Březina authored
We print the error as fatal error in the monitor to make sure the message is correctly visible. However, the error is not fatal for tools like sss_cache and it should not be printed there by default. Since the tools have default debug level set to SSSDBG_FATAL_FAILURE, it is sufficient to just drop the level to critical. Resolves: https://github.com/SSSD/sssd/issues/6387 Reviewed-by: Alejandro López <allopez@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit df55b1f1)
ab7cbb5f -
aborah-sudo authored
https://gitlab.cee.redhat.com/sssd/sssd-qe/-/tree/RHEL8.6/client/proxy_provider/rfc2307 Reviewed-by: Steeve Goveas <sgoveas@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit 6c0ae779)
62276737 -
Alexey Tikhonov authored
Reviewed-by: Alejandro López <allopez@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 8a2fd06b)
cfaa06b0 -
Alexey Tikhonov authored
Reviewed-by: Justin Stephenson <jstephen@redhat.com> Reviewed-by: Sumit Bose <sbose@redhat.com> (cherry picked from commit 71466a8d)
e0026e38 -
Pavel Březina authored
Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Justin Stephenson <jstephen@redhat.com> (cherry picked from commit 62458d49)
7bf97190 -
Pavel Březina authored
checkout@v3 runs on node16 so it will remove deprecation warning: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Justin Stephenson <jstephen@redhat.com> (cherry picked from commit c526acba)
40ccfd6c -
Pavel Březina authored
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Justin Stephenson <jstephen@redhat.com> (cherry picked from commit 770bf7bf)
9aee8164 -
Pavel Březina authored
upload-artifact@v3 runs on node16 so it will remove deprecation warning: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Justin Stephenson <jstephen@redhat.com> (cherry picked from commit b2d193b9)
a7853d51 -
Alejandro López authored
Avoid requesting only the latest updates when using the "files" provider as it only updates the cache if /etc/files or /etc/group is touched. Added a test for this situation. Resolves: https://github.com/SSSD/sssd/issues/6398 Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Justin Stephenson <jstephen@redhat.com> (cherry picked from commit 2070000a)
6d7f1fba -
Justin Stephenson authored
Modify the analyzer to parse the responder log file in one pass. This avoids repeated parsing of a single log file. This operation will now store log lines in a dictionary on a single pass then format and print the output accordingly. Does not affect 'list' or 'show' output. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Tomáš Halman <thalman@redhat.com> (cherry picked from commit 4c678cbb)
c61e1098 -
Alejandro López authored
input->name.attr has to be duplicated when not NULL. Just copying the pointer is not a good thing. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 214540e7)
129979a3 -
Alejandro López authored
Variable domain is compared to NULL before checking sss_parse_inp_recv()'s return value. Let's initialize it to NULL. Warning: sss_parse_inp_recv() modifies domain's value when returning EOK or ERR_DOMAIN_NOT_FOUND. The situation is not perfect but is better than before. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 719c9253)
1377bca9 -
Alejandro López authored
For each domain, a multi-domain search is done and all the results for each domain are returned each time. This produces several copies of the same results. Function cache_req_input_parsed() decides whether to launch a multi- or single-domain search based on the domain the user requested. If the user didn’t request a domain (such as in a call to ListByName()), a multi-domain search is launched, even if we are only looking for the current domain. In that case a single-domain search is enough. Resolves: https://github.com/SSSD/sssd/issues/6360 Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 8f7c35ea)
1562df03 -
Alejandro López authored
Now that ListByName() and ListBy Attr are fixed, the test needs to be corrected as it was explicitly avoiding that case. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit a9796282)
82c69b7f -
Alejandro López authored
Using a fully-qualified name based on the expresion the user provided, when looking for names in the cache. Resolves: https://github.com/SSSD/sssd/issues/6361 Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 569dca5f)
13e841de -
Alejandro López authored
Added a test for the D-Bus function ListByName(). Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit 09895561)
7f583fad -
Alejandro López authored
The structure data is not modified in the function. The const modifier can be used. Reviewed-by: Alexey Tikhonov <atikhono@redhat.com> Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> (cherry picked from commit c3453e4e)
0f670188 -
김인수 authored
(Korean) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/ko/ po: update translations (Polish) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/pl/ po: update translations (Russian) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/ru/ po: update translations (Ukrainian) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/uk/ po: update translations (Polish) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/pl/ po: update translations (Korean) currently translated at 100.0% (663 of 663 strings) Translation: SSSD/SSSD-2-8 Translate-URL: https://translate.fedoraproject.org/projects/sssd/sssd-2-8/ko/
cfa11294 -
Shridhar Gadekar authored
Adding the missing pxssh module import Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Reviewed-by: Jakub Vávra <jvavra@redhat.com> (cherry picked from commit 90f860b277074df1861ad4110df35eee7c83862d)
59685cff -
Pavel Březina authored59973c0b
-
Pavel Březina authoreda18ef88e
-
Timo Aaltonen authoredd690c2c6
-
Timo Aaltonen authored1fa6693e
-
Timo Aaltonen authored53508df4
Showing
- .github/actions/build-sssd-srpm/action.yml 11 additions, 4 deletions.github/actions/build-sssd-srpm/action.yml
- .github/workflows/analyze-target.yml 4 additions, 4 deletions.github/workflows/analyze-target.yml
- .github/workflows/ci.yml 6 additions, 6 deletions.github/workflows/ci.yml
- .github/workflows/copr_build.yml 4 additions, 4 deletions.github/workflows/copr_build.yml
- .github/workflows/copr_cleanup.yml 1 addition, 1 deletion.github/workflows/copr_cleanup.yml
- .github/workflows/coverity.yml 1 addition, 1 deletion.github/workflows/coverity.yml
- .github/workflows/static-code-analysis.yml 4 additions, 4 deletions.github/workflows/static-code-analysis.yml
- contrib/ci/get-matrix.py 3 additions, 1 deletioncontrib/ci/get-matrix.py
- debian/changelog 2 additions, 2 deletionsdebian/changelog
- po/bg.po 12 additions, 12 deletionspo/bg.po
- po/ca.po 12 additions, 12 deletionspo/ca.po
- po/cs.po 12 additions, 12 deletionspo/cs.po
- po/de.po 12 additions, 12 deletionspo/de.po
- po/es.po 12 additions, 12 deletionspo/es.po
- po/eu.po 12 additions, 12 deletionspo/eu.po
- po/fi.po 12 additions, 12 deletionspo/fi.po
- po/fr.po 12 additions, 12 deletionspo/fr.po
- po/hu.po 12 additions, 12 deletionspo/hu.po
- po/id.po 12 additions, 12 deletionspo/id.po
- po/it.po 12 additions, 12 deletionspo/it.po