From 1d94eb0250da35f5e49a8b2d64b822617aafaecd Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Mon, 24 Dec 2018 16:39:27 -0300 Subject: [PATCH 1/2] Lintian complains about command-with-path Lintian detects the command-with-path-in-maintainer-script on line 143 from the postinst script while it was previously on line 140. So this override was no more working. --- debian/mariadb-server-10.3.lintian-overrides | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/mariadb-server-10.3.lintian-overrides b/debian/mariadb-server-10.3.lintian-overrides index 00ade8f3a..137547df3 100644 --- a/debian/mariadb-server-10.3.lintian-overrides +++ b/debian/mariadb-server-10.3.lintian-overrides @@ -1,5 +1,5 @@ # ash's buildin has no "-e" so use /bin/echo -mariadb-server-10.3: command-with-path-in-maintainer-script postinst:140 /bin/echo +mariadb-server-10.3: command-with-path-in-maintainer-script postinst:143 /bin/echo # OK, path /usr/sbin/invoke-rc.d is only used in check, executes are run without the path # False positive: unfortified calls have already been fully validated at compile-time # See full research at https://jira.mariadb.org/browse/MDEV-8377 -- GitLab From 4d93fa9e8fc9e6194cc22da2537e3340021dd04c Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Fri, 28 Dec 2018 14:39:44 -0300 Subject: [PATCH 2/2] Lintian unused override entry Lintian discovered an unused override entry in its database. Most likely it was used for a false-positive that has been fixed. However, some tags are only triggered in packages built on certain architectures. In this case, the override may need an architecture qualifier. --- debian/mariadb-test.lintian-overrides | 1 - 1 file changed, 1 deletion(-) diff --git a/debian/mariadb-test.lintian-overrides b/debian/mariadb-test.lintian-overrides index 83fe6db0f..6f4990d4a 100644 --- a/debian/mariadb-test.lintian-overrides +++ b/debian/mariadb-test.lintian-overrides @@ -1,3 +1,2 @@ # OK, this file is part of test suite and only used for a test mariadb-test: arch-dependent-file-in-usr-share usr/share/mysql/mysql-test/lib/My/SafeProcess/my_safe_process -mariadb-test: executable-not-elf-or-script usr/share/mysql/mysql-test/lib/generate-ssl-certs.sh -- GitLab