From 1d94eb0250da35f5e49a8b2d64b822617aafaecd Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Mon, 24 Dec 2018 16:39:27 -0300 Subject: [PATCH] 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