From andreas at canonical.com Thu Mar 8 08:04:30 2018 From: andreas at canonical.com (Andreas Hasenack) Date: Thu, 08 Mar 2018 08:04:30 +0000 Subject: [Pkg-sssd-devel] Bug#892315: sssd: secrets service does not work due to lack of /var/lib/sss/secrets Message-ID: <152049627044.7741.12949107666899813282.reportbug@sid-sssd> Package: sssd Version: 1.16.0-5 Severity: normal Dear Maintainer, The (socket activated) secrets service doesn't work because it can't create a secrets database due to the lack of the /var/lib/sss/secrets directory. Right after installation, if you try to access it like this for example: $ curl -H "Content-Type: application/json" --unix-socket /var/run/secrets.socket -XGET http://localhost/secrets/ 500 Internal Server Error

Internal Server Error

The server encountered an internal error.

/var/log/syslog log shows: Mar 8 07:38:58 sid-sssd sssd_secrets[6272]: ltdb: tdb(/var/lib/sss/secrets/secrets.ldb): tdb_open_ex: could not open file /var/lib/sss/secrets/secrets.ldb: No such file or directory Mar 8 07:38:58 sid-sssd sssd_secrets[6272]: Unable to open tdb '/var/lib/sss/secrets/secrets.ldb': No such file or directory Mar 8 07:38:58 sid-sssd sssd_secrets[6272]: Failed to connect to '/var/lib/sss/secrets/secrets.ldb' with backend 'tdb': Unable to open tdb '/var/lib/sss/secrets/secrets.ldb': No such file or directory Once that directory is created, the service works: # mkdir -m 0700 /var/lib/sss/secrets $ curl -H "Content-Type: application/json" --unix-socket /var/run/secrets.socket -XGET http://localhost/secrets/ 404 Not Found

Not Found

The requested resource was not found.

And you can create secrets: $ curl -H "Content-Type: application/json" --unix-socket /var/run/secrets.socket -XPUT http://localhost/secrets/foo -d'{"type":"simple","value":"foosecret"}' 200 OK

OK

Success

root at sid-sssd:~# ls -lah /var/lib/sss/secrets/ total 5.5K drwx------ 2 root root 4 Mar 8 08:02 . drwxr-xr-x 9 root root 9 Mar 8 08:02 .. -rw------- 1 root root 32 Mar 8 08:02 .secrets.mkey -rw------- 1 root root 1.3M Mar 8 08:03 secrets.ldb -- System Information: Debian Release: buster/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 4.13.0-36-generic (SMP w/4 CPU cores) Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE=C.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages sssd depends on: ii python3-sss 1.16.0-5 ii sssd-ad 1.16.0-5 ii sssd-common 1.16.0-5 ii sssd-ipa 1.16.0-5 ii sssd-krb5 1.16.0-5 ii sssd-ldap 1.16.0-5 ii sssd-proxy 1.16.0-5 sssd recommends no packages. sssd suggests no packages. -- no debconf information From tjaalton at moszumanska.debian.org Thu Mar 8 08:27:26 2018 From: tjaalton at moszumanska.debian.org (Timo Aaltonen) Date: Thu, 08 Mar 2018 08:27:26 +0000 Subject: [Pkg-sssd-devel] sssd: Changes to 'master' Message-ID: debian/changelog | 7 +++++++ debian/sssd-common.dirs | 1 + debian/sssd-common.postinst | 3 ++- 3 files changed, 10 insertions(+), 1 deletion(-) New commits: commit 738ab758400eceee11a57279cb1970ba60762bf2 Author: Timo Aaltonen Date: Thu Mar 8 10:27:10 2018 +0200 common.dirs, common.postinst: Add dir for secrets with correct permissions. (Closes: #892315) diff --git a/debian/changelog b/debian/changelog index ee80726..47a1cc4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +sssd (1.16.0-4) UNRELEASED; urgency=medium + + * common.dirs, common.postinst: Add dir for secrets with correct + permissions. (Closes: #892315) + + -- Timo Aaltonen Thu, 08 Mar 2018 10:26:48 +0200 + sssd (1.16.0-3) unstable; urgency=medium * Install responder service and socket files again. diff --git a/debian/sssd-common.dirs b/debian/sssd-common.dirs index 93dad48..c7f4de5 100644 --- a/debian/sssd-common.dirs +++ b/debian/sssd-common.dirs @@ -7,4 +7,5 @@ var/lib/sss/mc var/lib/sss/pipes var/lib/sss/pipes/private var/lib/sss/pubconf +var/lib/sss/secrets var/log/sssd diff --git a/debian/sssd-common.postinst b/debian/sssd-common.postinst index 47d0884..32500d2 100644 --- a/debian/sssd-common.postinst +++ b/debian/sssd-common.postinst @@ -37,6 +37,7 @@ case "$1" in $HOME/pipes \ $HOME/pipes/private \ $HOME/pubconf \ + $HOME/secrets \ /etc/sssd \ /var/log/sssd chown root:sssd $LIBDIR/p11_child @@ -45,7 +46,7 @@ case "$1" in chmod 755 $HOME/gpo_cache $HOME/mc $HOME/pipes $HOME/pubconf chmod 750 /var/log/sssd chmod 711 /etc/sssd - chmod 700 $HOME/db $HOME/pipes/private + chmod 700 $HOME/db $HOME/pipes/private $HOME/secrets if [ -f /etc/sssd/sssd.conf ]; then chown root:root /etc/sssd/sssd.conf chmod 0600 /etc/sssd/sssd.conf From andreas at canonical.com Thu Mar 8 10:47:15 2018 From: andreas at canonical.com (Andreas Hasenack) Date: Thu, 8 Mar 2018 11:47:15 +0100 Subject: [Pkg-sssd-devel] Bug#892315: sssd: secrets service does not work due to lack of /var/lib/sss/secrets References: <152049627044.7741.12949107666899813282.reportbug@sid-sssd> Message-ID: I added an MP on salsa for this: https://salsa.debian.org/sssd-team/sssd/merge_requests/1 -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at salsa.debian.org Tue Mar 13 09:30:12 2018 From: gitlab at salsa.debian.org (Timo Aaltonen) Date: Tue, 13 Mar 2018 09:30:12 +0000 Subject: [Pkg-sssd-devel] [Git][sssd-team/sssd][master] 2 commits: control: Bump policy to 4.1.3, no changes. Message-ID: <5aa79a2452d22_3352ac436e1399c32334f@godard.mail> Timo Aaltonen pushed to branch master at Debian SSSD packaging / sssd Commits: 7b52dfe2 by Timo Aaltonen at 2018-03-13T11:24:35+02:00 control: Bump policy to 4.1.3, no changes. - - - - - e10dab9a by Timo Aaltonen at 2018-03-13T11:25:16+02:00 releasing package sssd version 1.16.1-1 - - - - - 2 changed files: - debian/changelog - debian/control Changes: ===================================== debian/changelog ===================================== --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -sssd (1.16.1-1) UNRELEASED; urgency=medium +sssd (1.16.1-1) unstable; urgency=medium * New upstream release. * common.dirs, common.postinst: Add dir for secrets with correct @@ -8,8 +8,9 @@ sssd (1.16.1-1) UNRELEASED; urgency=medium * control: Add libgdm-dev to build-depends to support multiple certificates. * control, rules, common.install: Add support for systemtap. + * control: Bump policy to 4.1.3, no changes. - -- Timo Aaltonen Tue, 13 Mar 2018 09:38:28 +0200 + -- Timo Aaltonen Tue, 13 Mar 2018 11:25:00 +0200 sssd (1.16.0-5) unstable; urgency=medium ===================================== debian/control ===================================== --- a/debian/control +++ b/debian/control @@ -67,7 +67,7 @@ Build-Depends: xsltproc X-Python-Version: >= 2.6 X-Python3-Version: >= 3.3 -Standards-Version: 4.0.0 +Standards-Version: 4.1.3 Vcs-Git: git://anonscm.debian.org/pkg-sssd/sssd.git Vcs-Browser: http://anonscm.debian.org/cgit/pkg-sssd/sssd.git Homepage: https://pagure.io/SSSD/sssd/ View it on GitLab: https://salsa.debian.org/sssd-team/sssd/compare/093e3f8b1ae2d0f465fc4fc7ef4152fb67e1635f...e10dab9ac123410dd72581a197a0797b562b7c78 --- View it on GitLab: https://salsa.debian.org/sssd-team/sssd/compare/093e3f8b1ae2d0f465fc4fc7ef4152fb67e1635f...e10dab9ac123410dd72581a197a0797b562b7c78 You're receiving this email because of your account on salsa.debian.org. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ftpmaster at ftp-master.debian.org Tue Mar 13 09:39:20 2018 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Tue, 13 Mar 2018 09:39:20 +0000 Subject: [Pkg-sssd-devel] Processing of sssd_1.16.1-1_source.changes Message-ID: sssd_1.16.1-1_source.changes uploaded successfully to localhost along with the files: sssd_1.16.1-1.dsc sssd_1.16.1.orig.tar.gz sssd_1.16.1-1.diff.gz Greetings, Your Debian queue daemon (running on host usper.debian.org) From tjaalton at debian.org Tue Mar 13 10:19:36 2018 From: tjaalton at debian.org (Timo Aaltonen) Date: Tue, 13 Mar 2018 10:19:36 +0000 Subject: [Pkg-sssd-devel] Accepted sssd 1.16.1-1 (source) into unstable Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Tue, 13 Mar 2018 11:25:00 +0200 Source: sssd Binary: sssd sssd-common sssd-ad sssd-ad-common sssd-dbus sssd-ipa sssd-kcm sssd-krb5 sssd-krb5-common sssd-ldap sssd-proxy sssd-tools libnss-sss libpam-sss libipa-hbac0 libipa-hbac-dev libsss-certmap0 libsss-certmap-dev libsss-idmap0 libsss-idmap-dev libsss-nss-idmap0 libsss-nss-idmap-dev libsss-sudo libsss-simpleifp0 libsss-simpleifp-dev libwbclient-sssd libwbclient-sssd-dev python-libipa-hbac python-libsss-nss-idmap python-sss python3-libipa-hbac python3-libsss-nss-idmap python3-sss Architecture: source Version: 1.16.1-1 Distribution: unstable Urgency: medium Maintainer: Debian SSSD Team Changed-By: Timo Aaltonen 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: 892315 Changes: sssd (1.16.1-1) unstable; urgency=medium . * New upstream release. * common.dirs, common.postinst: Add dir for secrets with correct permissions. (Closes: #892315) * common: Add support for Fleet Commander, create deskprofile dir with correct permissions. * control: Add libgdm-dev to build-depends to support multiple certificates. * control, rules, common.install: Add support for systemtap. * control: Bump policy to 4.1.3, no changes. Checksums-Sha1: 5ec1a1a2916270987a57e0eeea989c15d25aa3d9 4636 sssd_1.16.1-1.dsc a840f0244b580f79e4c332f97d2722c2269b1f8d 5992778 sssd_1.16.1.orig.tar.gz b64cd16916b52fa4228334d285dc3e131f79f530 95350 sssd_1.16.1-1.diff.gz Checksums-Sha256: d59242f1a0fe2522e60cb77c5b34a62cdd989d12d5efd2e4c0f0c123c062a517 4636 sssd_1.16.1-1.dsc 2dbf677851afdefcdf57eccaf25d59eb682a2994ad2a2dbf419003930a0b506e 5992778 sssd_1.16.1.orig.tar.gz 128cf92b82cfe21ffde19e5dffed19982ef93b41ba3c2e1e5a78db467106ef7b 95350 sssd_1.16.1-1.diff.gz Files: 1d46c92ba1c0c112b88a5288c29f9ab3 4636 utils extra sssd_1.16.1-1.dsc b4df37eace2b62a604214a40855d2574 5992778 utils extra sssd_1.16.1.orig.tar.gz 4f3db10deb4e5e15b79e6bb42e34a07e 95350 utils extra sssd_1.16.1-1.diff.gz -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCAAGBQJap5kUAAoJEMtwMWWoiYTcVzUQAJYjN7jHdkyIwHkOvJI1Bu05 0gJ+U3a/GyvaUPM/y1EJGF798N5oMwhc0ktvDe5HiNm3TqV9s2YE3VVVH03hMMia QAnbB87+mGwfRIsjNJueWa+8B+nRWE+yxPqCX2Mqn/eJEaG7Kd1FuqSqskp9YEGh MXbCbFih38n1WuQCEyTi1EcIdJVCPlojs7GjsHIY3WS6/IVGQynFJhttybOQUv13 Pl1IWM7t7xM0XsAA2qbOgpFc/4HirWlXPmfsa/7RrMgDCYtpGYSWDPPLkhTXKNLa YTTP6MU35E9zbA+ig9CelCTMD6j6hUUq7RQRC20B9wqJsguc5i8UJK7qXErqNk0s dvSgI2Rmk2Cf2ffiwO6ywG3HIEr6fctysPRIZT0WRiH0kk/aeI1irpFRtqQuCETA 00SHVPr2Eex91d4X7TOALUK3EaIzjxmFQkB5KKJQu/M3zhm/YbC5og+kStB38TzN h+xfmT/c2AgMjs62qwtnSmaHEgpXMVDhuHQKy5kL3J4ykhesb/aG8mUn9alu8l90 uRIcn+NsstogzI1Bljp62yS9p6ZnyEjJN2VPV1Kf5ZQSMuYP7hR8do8CUtAVyYUO m/nZ65oHBXYfQonJtTm7pf6ZKxzdlqO33BgeKw+lcF4DdxhV8U6ABTxoExchmWgK RVL/H7Fw/MYEts8ZZKRR =Xd5T -----END PGP SIGNATURE----- From ftpmaster at ftp-master.debian.org Tue Mar 13 10:19:36 2018 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Tue, 13 Mar 2018 10:19:36 +0000 Subject: [Pkg-sssd-devel] sssd_1.16.1-1_source.changes ACCEPTED into unstable Message-ID: Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Tue, 13 Mar 2018 11:25:00 +0200 Source: sssd Binary: sssd sssd-common sssd-ad sssd-ad-common sssd-dbus sssd-ipa sssd-kcm sssd-krb5 sssd-krb5-common sssd-ldap sssd-proxy sssd-tools libnss-sss libpam-sss libipa-hbac0 libipa-hbac-dev libsss-certmap0 libsss-certmap-dev libsss-idmap0 libsss-idmap-dev libsss-nss-idmap0 libsss-nss-idmap-dev libsss-sudo libsss-simpleifp0 libsss-simpleifp-dev libwbclient-sssd libwbclient-sssd-dev python-libipa-hbac python-libsss-nss-idmap python-sss python3-libipa-hbac python3-libsss-nss-idmap python3-sss Architecture: source Version: 1.16.1-1 Distribution: unstable Urgency: medium Maintainer: Debian SSSD Team Changed-By: Timo Aaltonen 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: 892315 Changes: sssd (1.16.1-1) unstable; urgency=medium . * New upstream release. * common.dirs, common.postinst: Add dir for secrets with correct permissions. (Closes: #892315) * common: Add support for Fleet Commander, create deskprofile dir with correct permissions. * control: Add libgdm-dev to build-depends to support multiple certificates. * control, rules, common.install: Add support for systemtap. * control: Bump policy to 4.1.3, no changes. Checksums-Sha1: 5ec1a1a2916270987a57e0eeea989c15d25aa3d9 4636 sssd_1.16.1-1.dsc a840f0244b580f79e4c332f97d2722c2269b1f8d 5992778 sssd_1.16.1.orig.tar.gz b64cd16916b52fa4228334d285dc3e131f79f530 95350 sssd_1.16.1-1.diff.gz Checksums-Sha256: d59242f1a0fe2522e60cb77c5b34a62cdd989d12d5efd2e4c0f0c123c062a517 4636 sssd_1.16.1-1.dsc 2dbf677851afdefcdf57eccaf25d59eb682a2994ad2a2dbf419003930a0b506e 5992778 sssd_1.16.1.orig.tar.gz 128cf92b82cfe21ffde19e5dffed19982ef93b41ba3c2e1e5a78db467106ef7b 95350 sssd_1.16.1-1.diff.gz Files: 1d46c92ba1c0c112b88a5288c29f9ab3 4636 utils extra sssd_1.16.1-1.dsc b4df37eace2b62a604214a40855d2574 5992778 utils extra sssd_1.16.1.orig.tar.gz 4f3db10deb4e5e15b79e6bb42e34a07e 95350 utils extra sssd_1.16.1-1.diff.gz -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCAAGBQJap5kUAAoJEMtwMWWoiYTcVzUQAJYjN7jHdkyIwHkOvJI1Bu05 0gJ+U3a/GyvaUPM/y1EJGF798N5oMwhc0ktvDe5HiNm3TqV9s2YE3VVVH03hMMia QAnbB87+mGwfRIsjNJueWa+8B+nRWE+yxPqCX2Mqn/eJEaG7Kd1FuqSqskp9YEGh MXbCbFih38n1WuQCEyTi1EcIdJVCPlojs7GjsHIY3WS6/IVGQynFJhttybOQUv13 Pl1IWM7t7xM0XsAA2qbOgpFc/4HirWlXPmfsa/7RrMgDCYtpGYSWDPPLkhTXKNLa YTTP6MU35E9zbA+ig9CelCTMD6j6hUUq7RQRC20B9wqJsguc5i8UJK7qXErqNk0s dvSgI2Rmk2Cf2ffiwO6ywG3HIEr6fctysPRIZT0WRiH0kk/aeI1irpFRtqQuCETA 00SHVPr2Eex91d4X7TOALUK3EaIzjxmFQkB5KKJQu/M3zhm/YbC5og+kStB38TzN h+xfmT/c2AgMjs62qwtnSmaHEgpXMVDhuHQKy5kL3J4ykhesb/aG8mUn9alu8l90 uRIcn+NsstogzI1Bljp62yS9p6ZnyEjJN2VPV1Kf5ZQSMuYP7hR8do8CUtAVyYUO m/nZ65oHBXYfQonJtTm7pf6ZKxzdlqO33BgeKw+lcF4DdxhV8U6ABTxoExchmWgK RVL/H7Fw/MYEts8ZZKRR =Xd5T -----END PGP SIGNATURE----- Thank you for your contribution to Debian. From owner at bugs.debian.org Tue Mar 13 10:21:08 2018 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 13 Mar 2018 10:21:08 +0000 Subject: [Pkg-sssd-devel] Bug#892315: marked as done (sssd: secrets service does not work due to lack of /var/lib/sss/secrets) References: <152049627044.7741.12949107666899813282.reportbug@sid-sssd> Message-ID: Your message dated Tue, 13 Mar 2018 10:19:36 +0000 with message-id and subject line Bug#892315: fixed in sssd 1.16.1-1 has caused the Debian Bug report #892315, regarding sssd: secrets service does not work due to lack of /var/lib/sss/secrets 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 owner at bugs.debian.org immediately.) -- 892315: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=892315 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Andreas Hasenack Subject: sssd: secrets service does not work due to lack of /var/lib/sss/secrets Date: Thu, 08 Mar 2018 08:04:30 +0000 Size: 4017 URL: -------------- next part -------------- An embedded message was scrubbed... From: Timo Aaltonen Subject: Bug#892315: fixed in sssd 1.16.1-1 Date: Tue, 13 Mar 2018 10:19:36 +0000 Size: 7976 URL: From francesco.malvezzi at unimore.it Fri Mar 16 13:55:23 2018 From: francesco.malvezzi at unimore.it (Francesco Malvezzi) Date: Fri, 16 Mar 2018 14:55:23 +0100 Subject: [Pkg-sssd-devel] Bug#893099: sssd: Segmentation fault after setting sssd-ad Message-ID: <152120852303.2227.16804360135591263294.reportbug@pod.ad.unimore.it> Package: sssd Version: 1.15.0-3 Severity: normal Dear Maintainer, after trying to set up an AD lookup, I am unable to start sssd: francesco at pod:~$ sudo /usr/sbin/sssd -i segmentation fault The sssd.conf file is now a pure LDAP lookup: [sssd] config_file_version = 2 services = nss, pam # SSSD will not start if you do not configure any domains. # Add new domain configurations as [domain/] sections, and # then add the list of domains (in the order you want them to be # queried) to the "domains" attribute below and uncomment it. domains = LDAP [nss] [pam] # Example LDAP domain [domain/LDAP] id_provider = ldap auth_provider = ldap ldap_schema = rfc2307 ldap_uri = ldap://ldap5.example.org ldap_search_base = dc=example,dc=org ldap_tls_reqcert = demand cache_credentials = true enumerate = False but still sssd refuses to start. Purging the package, deleting /var/lib/sss dir, and rebooting didn't help. -- System Information: Debian Release: 9.4 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 4.9.0-6-amd64 (SMP w/1 CPU core) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8), LANGUAGE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages sssd depends on: ii python-sss 1.15.0-3 ii sssd-ad 1.15.0-3 ii sssd-common 1.15.0-3 ii sssd-ipa 1.15.0-3 ii sssd-krb5 1.15.0-3 ii sssd-ldap 1.15.0-3 ii sssd-proxy 1.15.0-3 sssd recommends no packages. sssd suggests no packages. -- no debconf information From noreply at release.debian.org Sun Mar 18 04:39:38 2018 From: noreply at release.debian.org (Debian testing watch) Date: Sun, 18 Mar 2018 04:39:38 +0000 Subject: [Pkg-sssd-devel] sssd 1.16.1-1 MIGRATED to testing Message-ID: FYI: The status of the sssd source package in Debian's testing distribution has changed. Previous version: 1.16.0-5 Current version: 1.16.1-1 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. From francesco.malvezzi at unimore.it Mon Mar 19 10:52:24 2018 From: francesco.malvezzi at unimore.it (Francesco Malvezzi) Date: Mon, 19 Mar 2018 11:52:24 +0100 Subject: [Pkg-sssd-devel] Bug#893099: Duplicate of #772695 References: <152120852303.2227.16804360135591263294.reportbug@pod.ad.unimore.it> Message-ID: <70926c61-b509-e6fd-7730-f50bc6ec7ed5@unimore.it> Hi all, really sorry, please close this bug report as it turns out it is a duplicate of: Debian Bug report logs - #772695 sssd crashes on startup because of samba ldb modules version regards, Francesco