Your message dated Thu, 05 Mar 2020 18:47:39 +0000 with message-id <[email protected]> and subject line Bug#946847: fixed in sssd 1.16.3-3.2 has caused the Debian Bug report #946847, regarding sssd_be: Busy loops on flaky LDAP, SIGTERM from watchdog not processed to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 946847: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=946847 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: sssd Version: 2.2.2-1+b1 Severity: important Tags: upstream In a setup with sssd using a remote slapd for NSS, and a somewhat flaky network in between, sssd_be tends to get into a busy loop sometimes, using 100% CPU time on one core. Debugging showed that sssd has a watchdog to clean up in such cases, but sssd_be installs a signal handler that prevents the SIGTERM on the processgroup to be processed correctly, and does not exit. src/util/util_watchdog.c: 64 /* the watchdog is purposefully *not* handled by the tevent 65 * signal handler as it is meant to check if the daemon is 66 * still processing the event queue itself. A stuck process 67 * may not handle the event queue at all and thus not handle 68 * signals either */ 69 static void watchdog_handler(int sig) 70 { 71 72 watchdog_detect_timeshift(); 73 74 /* if a pre-defined number of ticks passed by kills itself */ 75 if (__sync_add_and_fetch(&watchdog_ctx.ticks, 1) > WATCHDOG_MAX_TICKS) { 76 if (getpid() == getpgrp()) { 77 kill(-getpgrp(), SIGTERM); 78 } else { 79 _exit(1); 80 } 81 } 82 } (NB. Seems what is described in the comment was not all too successful ;) The signal handler is installed in src/providers/data_provider_be.c: 448 static void be_process_finalize(struct tevent_context *ev, 449 struct tevent_signal *se, 450 int signum, 451 int count, 452 void *siginfo, 453 void *private_data) 454 { 455 struct be_ctx *be_ctx; 456 457 be_ctx = talloc_get_type(private_data, struct be_ctx); 458 talloc_free(be_ctx); 459 orderly_shutdown(0); 460 } 461 462 static errno_t be_process_install_sigterm_handler(struct be_ctx *be_ctx) 463 { 464 struct tevent_signal *sige; 465 466 BlockSignals(false, SIGTERM); 467 468 sige = tevent_add_signal(be_ctx->ev, be_ctx, SIGTERM, SA_SIGINFO, 469 be_process_finalize, be_ctx); 470 if (sige == NULL) { 471 DEBUG(SSSDBG_CRIT_FAILURE, "tevent_add_signal failed.\n"); 472 return ENOMEM; 473 } 474 475 return EOK; 476 } Setting a breakpoint on be_process_finalize showed that this function is never reached, probably because libtevent never gets around to calling it. Two proposals to circumvent this are: a) Reset the handler before calling kill on the process group in line 77 (e.g. signal(SIGTERM, SIG_DFL);) b) Move the exit call in line 79 out of the branch so it gets called unconditionally in case kill() fails to kill the process itself We tested solution a) in gdb and it caused sssd_be to exit cleanly and restart, as it should. Cheers, Nik Analysis was sponsored by Teckids e.V. and tarent solutions GmbH. -- System Information: Debian Release: bullseye/sid APT prefers testing-debug APT policy: (500, 'testing-debug'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 5.3.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages sssd depends on: ii python3-sss 2.2.2-1+b1 ii sssd-ad 2.2.2-1+b1 ii sssd-common 2.2.2-1+b1 ii sssd-ipa 2.2.2-1+b1 ii sssd-krb5 2.2.2-1+b1 ii sssd-ldap 2.2.2-1+b1 ii sssd-proxy 2.2.2-1+b1 sssd recommends no packages. sssd suggests no packages. -- no debconf information
--- End Message ---
--- Begin Message ---Source: sssd Source-Version: 1.16.3-3.2 Done: Thorsten Glaser <[email protected]> We believe that the bug you reported is fixed in the latest version of sssd, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Thorsten Glaser <[email protected]> (supplier of updated sssd package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA384 Format: 1.8 Date: Fri, 21 Feb 2020 14:31:19 +0100 Source: sssd Binary: libipa-hbac-dev libipa-hbac0 libipa-hbac0-dbgsym libnss-sss libnss-sss-dbgsym libpam-sss libpam-sss-dbgsym libsss-certmap-dev libsss-certmap0 libsss-certmap0-dbgsym libsss-idmap-dev libsss-idmap0 libsss-idmap0-dbgsym libsss-nss-idmap-dev libsss-nss-idmap0 libsss-nss-idmap0-dbgsym libsss-simpleifp-dev libsss-simpleifp0 libsss-simpleifp0-dbgsym libsss-sudo libsss-sudo-dbgsym libwbclient-sssd libwbclient-sssd-dbgsym libwbclient-sssd-dev python-libipa-hbac python-libipa-hbac-dbgsym python-libsss-nss-idmap python-libsss-nss-idmap-dbgsym python-sss python-sss-dbgsym python3-libipa-hbac python3-libipa-hbac-dbgsym python3-libsss-nss-idmap python3-libsss-nss-idmap-dbgsym python3-sss python3-sss-dbgsym sssd sssd-ad sssd-ad-common sssd-ad-common-dbgsym sssd-ad-dbgsym sssd-common sssd-common-dbgsym sssd-dbus sssd-dbus-dbgsym sssd-ipa sssd-ipa-dbgsym sssd-kcm sssd-kcm-dbgsym sssd-krb5 sssd-krb5-common sssd-krb5-common-dbgsym sssd-krb5-dbgsym sssd-ldap sssd-ldap-dbgsym sssd-proxy sssd-proxy-dbgsym sssd-tools sssd-tools-dbgsym Architecture: source amd64 Version: 1.16.3-3.2 Distribution: buster Urgency: medium Maintainer: Debian SSSD Team <[email protected]> Changed-By: Thorsten Glaser <[email protected]> Description: libipa-hbac-dev - FreeIPA HBAC Evaluator library -- development files libipa-hbac0 - FreeIPA HBAC Evaluator library libnss-sss - Nss library for the System Security Services Daemon libpam-sss - Pam module for the System Security Services Daemon libsss-certmap-dev - Certificate mapping library for SSSD -- development files libsss-certmap0 - Certificate mapping library for SSSD libsss-idmap-dev - ID mapping library for SSSD -- development files libsss-idmap0 - ID mapping library for SSSD libsss-nss-idmap-dev - SID based lookups library for SSSD -- development files libsss-nss-idmap0 - SID based lookups library for SSSD libsss-simpleifp-dev - SSSD D-Bus responder helper library -- development files libsss-simpleifp0 - SSSD D-Bus responder helper library libsss-sudo - Communicator library for sudo libwbclient-sssd - SSSD libwbclient implementation libwbclient-sssd-dev - SSSD libwbclient implementation -- development files python-libipa-hbac - Python bindings for the FreeIPA HBAC Evaluator library python-libsss-nss-idmap - Python bindings for the SID lookups library python-sss - Python module for the System Security Services Daemon python3-libipa-hbac - Python3 bindings for the FreeIPA HBAC Evaluator library python3-libsss-nss-idmap - Python3 bindings for the SID lookups library python3-sss - Python3 module for the System Security Services Daemon sssd - System Security Services Daemon -- metapackage sssd-ad - System Security Services Daemon -- Active Directory back end sssd-ad-common - System Security Services Daemon -- PAC responder sssd-common - System Security Services Daemon -- common files sssd-dbus - System Security Services Daemon -- D-Bus responder sssd-ipa - System Security Services Daemon -- IPA back end sssd-kcm - System Security Services Daemon -- Kerberos KCM server implementa sssd-krb5 - System Security Services Daemon -- Kerberos back end sssd-krb5-common - System Security Services Daemon -- Kerberos helpers sssd-ldap - System Security Services Daemon -- LDAP back end sssd-proxy - System Security Services Daemon -- proxy back end sssd-tools - System Security Services Daemon -- tools Closes: 946847 Changes: sssd (1.16.3-3.2) buster; urgency=medium . * Non-maintainer upload with maintainer permission. * Fix sssd_be busy-looping when LDAP connection flickers. (Closes: #946847) Checksums-Sha1: 3a59ece75494c8ba7a27c80d050a5f0be31a4ec9 4961 sssd_1.16.3-3.2.dsc 5046ef5219cb4c1bdd9ceee6c546f7807eb55db5 102249 sssd_1.16.3-3.2.diff.gz 7bbcbfbe5f37e6287299254567a7129ddb0516e5 19096 libipa-hbac-dev_1.16.3-3.2_amd64.deb 2603041d124e1fc9daf42f3c8adea9926a643efa 14016 libipa-hbac0-dbgsym_1.16.3-3.2_amd64.deb 5f3a12e003b8dd5cd41386bcf700c5415b6a2c8b 21528 libipa-hbac0_1.16.3-3.2_amd64.deb 3bac0bc9309e65a4b1da98055ea5303f03647e35 55136 libnss-sss-dbgsym_1.16.3-3.2_amd64.deb 59610d9de5e1b1e257bc516226565ab8853f3728 30568 libnss-sss_1.16.3-3.2_amd64.deb c9c80555846acd5413f4724e4972a6e0106cfb3c 57516 libpam-sss-dbgsym_1.16.3-3.2_amd64.deb a1e39b6bee20d2602d33ea424b70e4d5107e99ca 37912 libpam-sss_1.16.3-3.2_amd64.deb 7365ae56892710a2deb1a0d7f5255a0eda4b0da1 17952 libsss-certmap-dev_1.16.3-3.2_amd64.deb fa5b040380937e9b3b4e07c7b71e18d3b72f8b1c 87388 libsss-certmap0-dbgsym_1.16.3-3.2_amd64.deb acbd5c6ee8a15c6ce15669de0def21170764d274 42324 libsss-certmap0_1.16.3-3.2_amd64.deb 6b42d9d917801ff38588e498060907ac69a7d24f 20824 libsss-idmap-dev_1.16.3-3.2_amd64.deb 946a38404d342ea13eab41bce799276b8d09016a 32124 libsss-idmap0-dbgsym_1.16.3-3.2_amd64.deb ba34f98e4c0f2bd1de02c4fb3d8a0df012b6db71 25880 libsss-idmap0_1.16.3-3.2_amd64.deb 88bcc11cb67bc0da99dfdc63601b60a75306526c 18948 libsss-nss-idmap-dev_1.16.3-3.2_amd64.deb 111c2d8a0ce12a1d2d0f9d4e54f89a86bced1235 62652 libsss-nss-idmap0-dbgsym_1.16.3-3.2_amd64.deb ea4c5da27ebf88a22dca0b84daa55267e0703069 31048 libsss-nss-idmap0_1.16.3-3.2_amd64.deb 1a40bef9296b1ccf8a56ae2d5b6f81e7f17a4e4d 19860 libsss-simpleifp-dev_1.16.3-3.2_amd64.deb 4f024b25af512ce304e53ff7bdada3cd8a398ec0 35044 libsss-simpleifp0-dbgsym_1.16.3-3.2_amd64.deb c3f05bee627131a05e879821a9750c24e62a3a86 26124 libsss-simpleifp0_1.16.3-3.2_amd64.deb 3d440adfc997404aa287e7894b3e055ff80b57af 28512 libsss-sudo-dbgsym_1.16.3-3.2_amd64.deb 65130d374fd70b9079c958fbe879675b1c060683 24164 libsss-sudo_1.16.3-3.2_amd64.deb 9b51241c6747950335d35ef9f79b8cec3a60a268 37368 libwbclient-sssd-dbgsym_1.16.3-3.2_amd64.deb 3ce09fa469b6aaff60116f74c989a30cc2c7c092 24980 libwbclient-sssd-dev_1.16.3-3.2_amd64.deb 76e4b17fae1c4461356ac9e4c8ae082839703ce8 27240 libwbclient-sssd_1.16.3-3.2_amd64.deb 44ffe7d8e2371e569e29e92bd1503025cebfb5fa 40672 python-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb 1a60d26c96397587763e484e2b4eef7d321ca46e 27212 python-libipa-hbac_1.16.3-3.2_amd64.deb 9e98f55f56498759c3eb8934c3e885ea85457e29 18380 python-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb cf61e8d7b0b4497fd0f4baafb2c2369465ad8764 20808 python-libsss-nss-idmap_1.16.3-3.2_amd64.deb d5fc59ae70deb335bfdbd0425582bdd5b83a89f6 90920 python-sss-dbgsym_1.16.3-3.2_amd64.deb b35e181ee9eec9620fcf9c1810e3415714530d33 60156 python-sss_1.16.3-3.2_amd64.deb e4732e9eda559a3ae5f946a294e18d67398a05dd 47864 python3-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb b57462fc71372fcd826bd581359001e92e55f6b0 27228 python3-libipa-hbac_1.16.3-3.2_amd64.deb 5461a43cce8cf1214ea858caacb9bcc062e74944 20828 python3-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb 61de3fb6190cd127e302bcd2610c8b9893080e6f 20784 python3-libsss-nss-idmap_1.16.3-3.2_amd64.deb 862e519cdb2fbd98b63542aa1c880cb00fbc75de 95344 python3-sss-dbgsym_1.16.3-3.2_amd64.deb 839be2ccdcc0aa31d2a47820ea655f512601af6d 60164 python3-sss_1.16.3-3.2_amd64.deb ff14d27d55f3259080df6341eaeb1ee26653e228 310868 sssd-ad-common-dbgsym_1.16.3-3.2_amd64.deb b67b0f2e26fe2014b0791b2dcb41807b628a1e04 81328 sssd-ad-common_1.16.3-3.2_amd64.deb febc52ea3b1188cce0a040c6eed9c2e20c0aa6e6 340604 sssd-ad-dbgsym_1.16.3-3.2_amd64.deb 1eb658bad687a3c1dc209e26cb529e3ec331fea6 123304 sssd-ad_1.16.3-3.2_amd64.deb 261170c45f00301d412c303f92aa608dcc215709 4583172 sssd-common-dbgsym_1.16.3-3.2_amd64.deb 745169d210d7879d0d18a1dfc6a9c1d1bb9a3a7e 1067768 sssd-common_1.16.3-3.2_amd64.deb 021362826d04aca30fa10d1eadf71a374bf97333 393308 sssd-dbus-dbgsym_1.16.3-3.2_amd64.deb 3456b2f938c99ce403eaf66d5e0dfe99814112da 107820 sssd-dbus_1.16.3-3.2_amd64.deb cb51899f8804aeb633bf986086088575a268d30b 747712 sssd-ipa-dbgsym_1.16.3-3.2_amd64.deb 2eb4786cb5787a0cb3d2bdd60e54fd909c6a4e61 217948 sssd-ipa_1.16.3-3.2_amd64.deb 6238ef5f21ba7e016dbab4d75f3852fa03f62c19 488260 sssd-kcm-dbgsym_1.16.3-3.2_amd64.deb 35bb42b21bddd8d2ec5e0104e4e7ad6e4f5f0402 131128 sssd-kcm_1.16.3-3.2_amd64.deb 57e4f132d1d74753faf9e0dd012f259184578e02 296160 sssd-krb5-common-dbgsym_1.16.3-3.2_amd64.deb 94e1fe66f704e5a6f792eab058548fb231e725d9 86320 sssd-krb5-common_1.16.3-3.2_amd64.deb ee32129da0f61befaa1c2aac7a0807cd3b9a097b 14160 sssd-krb5-dbgsym_1.16.3-3.2_amd64.deb e4b6033a59f151bfd3ad4771a349191aecebcd3d 25968 sssd-krb5_1.16.3-3.2_amd64.deb 5b24e9d5f9bfc559cd8b60b52e37a37ebbafb354 31492 sssd-ldap-dbgsym_1.16.3-3.2_amd64.deb 2c944c1016b488b692db298cff5c5bb434291e49 41428 sssd-ldap_1.16.3-3.2_amd64.deb 642fc6d24fcdcc939740d44bde2c3b2ea7e043f9 114312 sssd-proxy-dbgsym_1.16.3-3.2_amd64.deb e1bb6eb65dcdcbf518422703e76dae9df0867713 47712 sssd-proxy_1.16.3-3.2_amd64.deb c2d1bea2687810ef8c8aedf23d019cb0ef9a3dd5 912620 sssd-tools-dbgsym_1.16.3-3.2_amd64.deb 4b9ccfb896eb8ddd88a1f854df08047219efdb95 166256 sssd-tools_1.16.3-3.2_amd64.deb b3da491f93888db3a87fc9b913bbe9bc56e517b4 28694 sssd_1.16.3-3.2_amd64.buildinfo 2962c9f9ece3ad99128890fd064dbfc3be4866a9 16696 sssd_1.16.3-3.2_amd64.deb Checksums-Sha256: 0c84d0c02ff80db39fe6b7cf9958b2918ca981a995a4963088a4b037e6f8f44b 4961 sssd_1.16.3-3.2.dsc 5410eaa71948aff1109c454d7eb806ef0f498b79c5a5feb8a6f22da157c23d56 102249 sssd_1.16.3-3.2.diff.gz 8a4e16e7cb0ef4e19ee33ee86010ce72f827cf73905ca8c6bc06ee6c3d1cb500 19096 libipa-hbac-dev_1.16.3-3.2_amd64.deb 8a34ff269e96741dad75641daa13a21052ac99bcee328bee8ec5418ec11da8ad 14016 libipa-hbac0-dbgsym_1.16.3-3.2_amd64.deb 5917ff27bea5879ff7d151eb48cbdf2519964bc27e7d1343ae6a8cb699b47447 21528 libipa-hbac0_1.16.3-3.2_amd64.deb b136910a3d0e7cb30ed4ef08e00bb79972faee0b29fe3e80f59b3061f9c1868e 55136 libnss-sss-dbgsym_1.16.3-3.2_amd64.deb ef4186b8bf3eb77c99344a8cbd1a614801e320a36a5c964506a9c2b48e67a1fe 30568 libnss-sss_1.16.3-3.2_amd64.deb 1a069cf9899f965d3e87d86be6276689a518f3aa5e3ec9be6408a7d54423699f 57516 libpam-sss-dbgsym_1.16.3-3.2_amd64.deb 85a0422e2a13d52353060308c7ff3ad633a0ac2bd1d7b9f7aea9eca69889983e 37912 libpam-sss_1.16.3-3.2_amd64.deb 5e0ffa7b200c733cf2f72da7e1354e53c8bd91d7b171f6a3e470fe0592af14d2 17952 libsss-certmap-dev_1.16.3-3.2_amd64.deb 01628479a3a8c03e183077ce59d5eddf6139d8c755e3115f9f5bd3bbe25a4005 87388 libsss-certmap0-dbgsym_1.16.3-3.2_amd64.deb 1b3c13485e97907149ecfbafc1eb86dc9f3db63275ee514cbb2aae46c4dc325b 42324 libsss-certmap0_1.16.3-3.2_amd64.deb 786dffa14aef77da85000a8188170ea8e9cc65c3ad7166d9888129a33bbfe04d 20824 libsss-idmap-dev_1.16.3-3.2_amd64.deb d07946928849f8195b0fca3e5d645f3646cd818253ad1bb2f51df366ef2f578d 32124 libsss-idmap0-dbgsym_1.16.3-3.2_amd64.deb a2c085393cdc8932e6ac073123278a607ed2117b0d5eed0081662c34e56076eb 25880 libsss-idmap0_1.16.3-3.2_amd64.deb 095481394ce15e90572ed2d4132eff41e49484f3face15ae79792e7d49f2431e 18948 libsss-nss-idmap-dev_1.16.3-3.2_amd64.deb 72c5512bc4fdee251df1f700b4316bc189727b88268975cbc05b0d354cd73091 62652 libsss-nss-idmap0-dbgsym_1.16.3-3.2_amd64.deb 91d77959f5937b742600d1363051f26d580250fe3c5255c6f040c24b883b3b0a 31048 libsss-nss-idmap0_1.16.3-3.2_amd64.deb cd1c8087f11990c7af68983a25bc71c234714c79d02963bcf66d129936005cf8 19860 libsss-simpleifp-dev_1.16.3-3.2_amd64.deb 8469d03341c48ef3182f58c75368938a660b487877bc15805bd02a7f9bf960f4 35044 libsss-simpleifp0-dbgsym_1.16.3-3.2_amd64.deb bea785fd605acbda22346845c59725867e91a434c8a6348ea00a3c2ceb302cf3 26124 libsss-simpleifp0_1.16.3-3.2_amd64.deb 1332e6c7c2244ef717364367326c80ccb0295829d4fbfecfb008b7432727b9da 28512 libsss-sudo-dbgsym_1.16.3-3.2_amd64.deb 9fe96d933dd73d39a27bd04f0ae55798548a05cd9b346d38f17573172a16bf28 24164 libsss-sudo_1.16.3-3.2_amd64.deb e49f795d5e840164451753a6c52021ee7263e3cc9f3b7f44f1a64a1bf46ad5df 37368 libwbclient-sssd-dbgsym_1.16.3-3.2_amd64.deb 4d7b2e414fe8337158e9218b946de40ca909c0f9a807263d95bebdde23915071 24980 libwbclient-sssd-dev_1.16.3-3.2_amd64.deb 48097b4633b5e789813e6f72c8e78e115f3cf0d2a8d69a28ddf50c2ca70b7631 27240 libwbclient-sssd_1.16.3-3.2_amd64.deb 70d8688f6d88648f2a38c93b0e060e9b1d0c397839e5b9fe53fdef434942f7be 40672 python-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb 7eeb1f2395509e58abe3e7c568e329d1ff332d1c7d84d4cf536fb8b8eca9620b 27212 python-libipa-hbac_1.16.3-3.2_amd64.deb 71d0be76fca9fdb865c6d49055fdb69ff6859fa8016eea5ebef231f151354a68 18380 python-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb f24bf2de9c4297a959e74746f5f9be7233bbc760a8593f88813d76d35d958b60 20808 python-libsss-nss-idmap_1.16.3-3.2_amd64.deb d1b48ed93e27741461b1c250b3053f1f503b6b057f1316caf7b3b134fe7b283e 90920 python-sss-dbgsym_1.16.3-3.2_amd64.deb bb95059f2f9eace4cea11d206460b4aa635d83103013b5a88374e01615726d98 60156 python-sss_1.16.3-3.2_amd64.deb 001d8d8a8ac3a88f9300ebb16c22964f3f2a3e584b3bb4d3cec2dbfef65438c9 47864 python3-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb ec26b55adae2181eb7237239aefdaad25c474480b906191260321f7c635ac387 27228 python3-libipa-hbac_1.16.3-3.2_amd64.deb c869d3a7fb79990946cf822bb89ef17e2db085c6ba57b71753cfe22d06d13578 20828 python3-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb e6198cb8552096e679cdb993634df4ef767dfe7db224d8dcfe23d051a5f0dfe4 20784 python3-libsss-nss-idmap_1.16.3-3.2_amd64.deb 78f099490f6d6ebd33d9d9d4957263ccd155973382013639ee029e31d61c987b 95344 python3-sss-dbgsym_1.16.3-3.2_amd64.deb 41837a1f398d5743b0ac98a3a82f23e2028a6df8c28bfff19061b891f8d56862 60164 python3-sss_1.16.3-3.2_amd64.deb 2ed33d4bdf753dffe9b5c2929e737e5f16c932788661f6c3d5d5313edf961c7f 310868 sssd-ad-common-dbgsym_1.16.3-3.2_amd64.deb 5705abdfc5caa80a7a853c499be3233d554a1d92928701bac6af03d3b06e3d30 81328 sssd-ad-common_1.16.3-3.2_amd64.deb e9c09bcaad2625ca85c82379a2974472b608b591afd48f9eac3900e033372fd1 340604 sssd-ad-dbgsym_1.16.3-3.2_amd64.deb 2be8944bd71129a50da376d0d9e37cb3a97c7833de04d9952bae27a1b5eef2e0 123304 sssd-ad_1.16.3-3.2_amd64.deb 0097cb571b9264a63d3925443f06542ab3b769a2c1a67e9ebbce23b3dfc0a2ba 4583172 sssd-common-dbgsym_1.16.3-3.2_amd64.deb 55a1e057bb2a614dcd1d05a0659ff0682acf931f9d602a561879d660bd5c495f 1067768 sssd-common_1.16.3-3.2_amd64.deb 126bb70208c370a8eb19dae80ed872cc2e9484cd81a2ddbaafbfd62064569268 393308 sssd-dbus-dbgsym_1.16.3-3.2_amd64.deb 96743d5675a018e5eb83055f17bcf6f47f2c8ce18069c28c25da2266dd9f8200 107820 sssd-dbus_1.16.3-3.2_amd64.deb 027e0b8d391d3dc98ea630be7c4e83c0f5a82d6ce4be1318370448f6c13f467e 747712 sssd-ipa-dbgsym_1.16.3-3.2_amd64.deb f0e22b6e035f0aaf1a200769590814997783b2db5c350006c79522fa1dceb79e 217948 sssd-ipa_1.16.3-3.2_amd64.deb ca4145129ea73045c76cac9a5e0c9bcaefcbf8eb10233d1d1616651e5f65b3b3 488260 sssd-kcm-dbgsym_1.16.3-3.2_amd64.deb 46653c3033607187189d8a0d4c6662289fe3f2580f5ce0c6c5ce6879888c8343 131128 sssd-kcm_1.16.3-3.2_amd64.deb 6eb44621b641505f648324cf1d873b14f4044df160e7fbbdd2fbb8abab8f07c6 296160 sssd-krb5-common-dbgsym_1.16.3-3.2_amd64.deb 7da20837288dce14f316abc83cabfe03c8801a505d08f7255cc61e1f6fbf50e2 86320 sssd-krb5-common_1.16.3-3.2_amd64.deb 3c704a8b664aa8317fab1ae6fefd4c34f876af2ce006b43f0ce41af42461a570 14160 sssd-krb5-dbgsym_1.16.3-3.2_amd64.deb f85481a1457885e4719b039f1e184bb418b193fc503594a75c41a5d39c788d19 25968 sssd-krb5_1.16.3-3.2_amd64.deb 271e9e3f2f67f4a5aa3d3a4f1345bb64db7a9c072b50d0c49cba4853d8fea440 31492 sssd-ldap-dbgsym_1.16.3-3.2_amd64.deb 4e6dc873f380d1fded2b809d839f035c2c584c0f538f986c11836d681f3acd61 41428 sssd-ldap_1.16.3-3.2_amd64.deb 105a71c9650c0ebae2a13bf51ead024d83c1b0aa2c06ae531b1098da496b30f1 114312 sssd-proxy-dbgsym_1.16.3-3.2_amd64.deb 92e092d89880af9e6dcf14dacc21a7c08895cf8cde919c030672fb21ee92c7b9 47712 sssd-proxy_1.16.3-3.2_amd64.deb 8d9d2f66326c44aa99c899838cd85a48fd434900b8233b8b0f6d5d243b225f7a 912620 sssd-tools-dbgsym_1.16.3-3.2_amd64.deb 20922b2646f7426d9fc660ff5a1a63cb75ad8fb06de12685a681c12f909c94cc 166256 sssd-tools_1.16.3-3.2_amd64.deb 416fab1627bcbf866873722a19a7ff6b73430fd032f8629e69c0afa5ea5a65f8 28694 sssd_1.16.3-3.2_amd64.buildinfo 0653c465edb74fe6aef809fc7fcf75ef3cd9ed47b7f6b589dd8ca1be9226cdd9 16696 sssd_1.16.3-3.2_amd64.deb Files: a04f68511df310aa753e17ff6df3b000 4961 utils optional sssd_1.16.3-3.2.dsc 59bb6464074fc191d659b6713cf3958f 102249 utils optional sssd_1.16.3-3.2.diff.gz b79f4ac108e6b2952e88293e6d715be6 19096 libdevel optional libipa-hbac-dev_1.16.3-3.2_amd64.deb 7e13a0383ce191af6bd1af6d683fb75d 14016 debug optional libipa-hbac0-dbgsym_1.16.3-3.2_amd64.deb ee8be3a14597de15e118d5af949655cb 21528 libs optional libipa-hbac0_1.16.3-3.2_amd64.deb d7bf76f0486762f0b05cc5268148f06f 55136 debug optional libnss-sss-dbgsym_1.16.3-3.2_amd64.deb 0a02cb029da95607a34906c0b9baec1e 30568 utils optional libnss-sss_1.16.3-3.2_amd64.deb 132aae4c0adb08582dd049bc3e192609 57516 debug optional libpam-sss-dbgsym_1.16.3-3.2_amd64.deb 2b70d309dbc16719e8a801ed8002a6af 37912 utils optional libpam-sss_1.16.3-3.2_amd64.deb 0868d85f56723e55847b86d0923261d2 17952 libdevel optional libsss-certmap-dev_1.16.3-3.2_amd64.deb b07f55692b26ee677db995ffc3a68983 87388 debug optional libsss-certmap0-dbgsym_1.16.3-3.2_amd64.deb fa22b9f54cd75101aaea64d35fab42e4 42324 libs optional libsss-certmap0_1.16.3-3.2_amd64.deb 55bdfed20548398bcf81aac8b5594cc6 20824 libdevel optional libsss-idmap-dev_1.16.3-3.2_amd64.deb d3605969c31fce558d091fdd10b1ddb6 32124 debug optional libsss-idmap0-dbgsym_1.16.3-3.2_amd64.deb 4724cd9b8f79b5464d684c23c1ee244e 25880 libs optional libsss-idmap0_1.16.3-3.2_amd64.deb a6ef2c417ab8d0896ef081556177d4a4 18948 libdevel optional libsss-nss-idmap-dev_1.16.3-3.2_amd64.deb 3443a1157bad7b1a8dde777aab5ec2ca 62652 debug optional libsss-nss-idmap0-dbgsym_1.16.3-3.2_amd64.deb 26211dd2270f9484117d82ca996358e6 31048 libs optional libsss-nss-idmap0_1.16.3-3.2_amd64.deb 4d01ab22c50a629b68435dfe50a17fba 19860 libdevel optional libsss-simpleifp-dev_1.16.3-3.2_amd64.deb 48d3e874ac55829ed67e904660268716 35044 debug optional libsss-simpleifp0-dbgsym_1.16.3-3.2_amd64.deb e6d8a560c56645ffb22955147b22324e 26124 libs optional libsss-simpleifp0_1.16.3-3.2_amd64.deb a047ca17873f3b832cbb99787c92896b 28512 debug optional libsss-sudo-dbgsym_1.16.3-3.2_amd64.deb f2f74251eab5f055f07ec6e600a2737b 24164 libs optional libsss-sudo_1.16.3-3.2_amd64.deb ad042a972a38c4da9f342ce6ae30b58f 37368 debug optional libwbclient-sssd-dbgsym_1.16.3-3.2_amd64.deb a7cf23501a330f2a9a96238911ae2dd6 24980 libdevel optional libwbclient-sssd-dev_1.16.3-3.2_amd64.deb ffabaab82b24c594f3071b5f32bd1f55 27240 libs optional libwbclient-sssd_1.16.3-3.2_amd64.deb c0dbe6ed93b89b435a821befaceee643 40672 debug optional python-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb 7fc25784da8d2abdee8a72e3c6f992e5 27212 python optional python-libipa-hbac_1.16.3-3.2_amd64.deb 6bacfebc6d952b1e7206b8553711a89e 18380 debug optional python-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb b97526711f97ba93189cf21f343824e9 20808 python optional python-libsss-nss-idmap_1.16.3-3.2_amd64.deb 39a195b388d605e7ecea10df164d9711 90920 debug optional python-sss-dbgsym_1.16.3-3.2_amd64.deb e06aab4c0ff35c8c75d4da5ca222e7da 60156 python optional python-sss_1.16.3-3.2_amd64.deb 293d1207f7121b79691f87f426003e61 47864 debug optional python3-libipa-hbac-dbgsym_1.16.3-3.2_amd64.deb b67b476e1cb1f4bf82e21458286d0003 27228 python optional python3-libipa-hbac_1.16.3-3.2_amd64.deb 1342d3dfa9f9c4f131a83d7855053177 20828 debug optional python3-libsss-nss-idmap-dbgsym_1.16.3-3.2_amd64.deb 6a7ae4d0b6fef8c8f8a974ece75d8607 20784 python optional python3-libsss-nss-idmap_1.16.3-3.2_amd64.deb 2c2f62809b2ff2d868ab41ea38f0f494 95344 debug optional python3-sss-dbgsym_1.16.3-3.2_amd64.deb 5ea0ad6e4e21cb9ab771f8d991fe76f7 60164 python optional python3-sss_1.16.3-3.2_amd64.deb a6c81cf61a9efa072a69884ce871a47d 310868 debug optional sssd-ad-common-dbgsym_1.16.3-3.2_amd64.deb 277564abb4620e63cd560d2fe35cfd49 81328 utils optional sssd-ad-common_1.16.3-3.2_amd64.deb 02320fd9b92b34081356e1c93b920245 340604 debug optional sssd-ad-dbgsym_1.16.3-3.2_amd64.deb 7b491da64ce4622e97a064cb05b8924d 123304 utils optional sssd-ad_1.16.3-3.2_amd64.deb c0787feb2e8607cd0db8ca6153bfc11a 4583172 debug optional sssd-common-dbgsym_1.16.3-3.2_amd64.deb 5a3c6c7ca22001aacb3f6ee99c77e148 1067768 utils optional sssd-common_1.16.3-3.2_amd64.deb 3b566cd9246ad48adc74420b6730ca15 393308 debug optional sssd-dbus-dbgsym_1.16.3-3.2_amd64.deb d97aa9ef676bbcfae48e8f324e1e40c9 107820 utils optional sssd-dbus_1.16.3-3.2_amd64.deb e517dc64ff448c630146c0a35bb22098 747712 debug optional sssd-ipa-dbgsym_1.16.3-3.2_amd64.deb a311920809fbffcb1ea9947ef4a9c526 217948 utils optional sssd-ipa_1.16.3-3.2_amd64.deb 0a5a45d42ee839ccb6ccf97212ff839a 488260 debug optional sssd-kcm-dbgsym_1.16.3-3.2_amd64.deb 7377e50df54ce920cb073b9f0bf2b781 131128 utils optional sssd-kcm_1.16.3-3.2_amd64.deb 7250b56c5ec5bf3562437b4354a5c540 296160 debug optional sssd-krb5-common-dbgsym_1.16.3-3.2_amd64.deb a9b9fcdeb1be680a282be25fba950616 86320 utils optional sssd-krb5-common_1.16.3-3.2_amd64.deb e4d12f504e3d3d957ca0bd9a40f76443 14160 debug optional sssd-krb5-dbgsym_1.16.3-3.2_amd64.deb e44e1414d29895da39e693104a5389bd 25968 utils optional sssd-krb5_1.16.3-3.2_amd64.deb 7bb834ae484357275e862f75554ce22c 31492 debug optional sssd-ldap-dbgsym_1.16.3-3.2_amd64.deb d4c96cac0f7394f501a7643d0b327ac7 41428 utils optional sssd-ldap_1.16.3-3.2_amd64.deb 729cf6861f0c3d658e8981e1979e672e 114312 debug optional sssd-proxy-dbgsym_1.16.3-3.2_amd64.deb 4c8ddfe254ca411f33ce97696d1c8266 47712 utils optional sssd-proxy_1.16.3-3.2_amd64.deb 0d12d8c5c5015c57983305290d615969 912620 debug optional sssd-tools-dbgsym_1.16.3-3.2_amd64.deb 85ef695002826ad64697463b7d92f175 166256 utils optional sssd-tools_1.16.3-3.2_amd64.deb 31b710f9cd239b61737835e9a2a44768 28694 utils optional sssd_1.16.3-3.2_amd64.buildinfo 41f63937375cbd3930756ec2621db2cd 16696 metapackages optional sssd_1.16.3-3.2_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.14 (MirBSD) Comment: ☃ ЦΤℱ—8 ☕☂☄ iQIcBAEBCQAGBQJeVnCwAAoJEHa1NLLpkAfgVfAQAJzb3D6QKfAONyTycQg6HSJk 3cXbWO2YUGM+jZ2gjCl5iYAyiEac0H4B0lTpPqgmDDr/uE3xTHqLpctnax4KzXa1 Bz/8yx/ghL1/8l76WdYdA14p35WDGcBqG0qK3tqvvV5T60cuJJNJed5TroX2FuqH Qj/5MH5iYAmbsx3FMg7ddtEARccHHalNAjLKDJyLLhh8rpm03I8pWyOpvjK56feY y2Cio2MqSW3duqOkFPbaHZ6mJRwPVn4ZClYr4jlvhi+0ekRh3VFVwSbeJacedeWn KIdo8Ul98UttPHUPH41feQIT+1c5I1YiUS1HPYpSOyj5LB856/MnGwiTJB8J6Rv2 sWW4ZbvJB7SS81NsaiBShCJlw83uiPATlH2U3dc3BfrJUDI+OnCDJTiXvwhg5a84 g9PuYQ6wd77uZpHVg0rhGD1COy+r5oe4okbi0B37Ybg/h37XnO2VzWMac9hEfM/2 5GikLClBGg0V1Mnuyv7Y+Xtao78hhjAi5V+dWjx3ksM3VqdrTpgdzosVPMSpegZw s3aSmKAbJOvemFbnp4b+DCRfhkp6TXtTybc7qauoJCcsk97qKo+B4Y7pPF+JswZ7 5nbk8USkJaOaqkIGammammA1z19PKEDCe6u3D+/fciM3yd8U5CegFmqQX+5jZYWn +YddxQM56Zyj5Dqcdo0L =Tgfh -----END PGP SIGNATURE-----
--- End Message ---

