Activity log for bug #2034251

Date Who What changed Old value New value Message
2023-09-05 12:50:24 Andreas Hasenack bug added bug
2023-09-05 12:50:45 Andreas Hasenack bug task added bind-dyndb-ldap (Ubuntu)
2023-09-05 12:50:50 Andreas Hasenack bind-dyndb-ldap (Ubuntu): status New In Progress
2023-09-05 12:50:52 Andreas Hasenack bind-dyndb-ldap (Ubuntu): importance Undecided Low
2023-09-05 12:50:55 Andreas Hasenack bind-dyndb-ldap (Ubuntu): assignee Andreas Hasenack (ahasenack)
2023-09-05 12:51:04 Andreas Hasenack summary Incorrect rdn in the bind9 dn entry Incorrect rdn in the bind9 dn entry in the DEP8 test
2023-09-05 12:51:25 Andreas Hasenack description There is a small mistake in the bind9 DN entry, it should have an attribute matching the dn, but instead it mentions a "replicator" entity that doesn't exist. It doesn't fail the test, but it's an incorrect LDAP entry: diff --git a/debian/tests/dyndb-ldap b/debian/tests/dyndb-ldap index 5482bc0..019bf24 100644 --- a/debian/tests/dyndb-ldap +++ b/debian/tests/dyndb-ldap @@ -8,6 +8,7 @@ myhostname="dep8" ldap_admin_dn="cn=admin,${ldap_suffix}" ldap_admin_pw="secret" ldap_bind9_dn="uid=bind9,${ldap_suffix}" +ldap_bind9_rdn="uid: bind9" # match ldap_bind9_dn ldap_bind9_pw="secretagain" cleanup() { @@ -122,7 +123,7 @@ EOF create_bind9_uid() { ldapadd -x -D "${ldap_admin_dn}" -w "${ldap_admin_pw}" <<EOF dn: ${ldap_bind9_dn} -uid: replicator +${ldap_bind9_rdn} objectClass: simpleSecurityObject objectClass: account userPassword: {CRYPT}x This was fixed in debian already via https://salsa.debian.org/freeipa-team/bind-dyndb-ldap/-/commit/6b5096776ee0502d9cac3966b6aa5f4da4cef664 There is a small mistake in the bind9 DN entry, it should have an attribute matching the dn, but instead it mentions a "replicator" entity that doesn't exist. It doesn't fail the test, but it's an incorrect LDAP entry and should be fixed: diff --git a/debian/tests/dyndb-ldap b/debian/tests/dyndb-ldap index 5482bc0..019bf24 100644 --- a/debian/tests/dyndb-ldap +++ b/debian/tests/dyndb-ldap @@ -8,6 +8,7 @@ myhostname="dep8"  ldap_admin_dn="cn=admin,${ldap_suffix}"  ldap_admin_pw="secret"  ldap_bind9_dn="uid=bind9,${ldap_suffix}" +ldap_bind9_rdn="uid: bind9" # match ldap_bind9_dn  ldap_bind9_pw="secretagain"  cleanup() { @@ -122,7 +123,7 @@ EOF  create_bind9_uid() {      ldapadd -x -D "${ldap_admin_dn}" -w "${ldap_admin_pw}" <<EOF  dn: ${ldap_bind9_dn} -uid: replicator +${ldap_bind9_rdn}  objectClass: simpleSecurityObject  objectClass: account  userPassword: {CRYPT}x This was fixed in debian already via https://salsa.debian.org/freeipa-team/bind-dyndb-ldap/-/commit/6b5096776ee0502d9cac3966b6aa5f4da4cef664
2023-09-05 13:15:49 Launchpad Janitor merge proposal linked https://code.launchpad.net/~ahasenack/ubuntu/+source/bind-dyndb-ldap/+git/bind-dyndb-ldap/+merge/450665
2023-09-05 13:18:12 Andreas Hasenack bug task deleted bind9 (Ubuntu)
2023-09-07 15:01:35 Launchpad Janitor bind-dyndb-ldap (Ubuntu): status In Progress Fix Released