Skip to content

Commit 29c5d96

Browse files
ottokcvicentiu
authored andcommitted
MDEV-21869: Make Debian packaging Lintian clean
Fix Lintian complaints on: P: maintainer-script-without-set-e W: mariadb-server-10.5: script-not-executable usr/share/mysql/mysql.init W: mariadb-client-10.5: incorrect-path-for-interpreter usr/bin/innotop (#!/usr/bin/env perl != /usr/bin/perl)
1 parent a4c5480 commit 29c5d96

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

debian/additions/innotop/innotop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env perl
1+
#!/usr/bin/perl
22

33
# vim: tw=160:nowrap:expandtab:tabstop=3:shiftwidth=3:softtabstop=3
44

debian/additions/mysql.init

100644100755
File mode changed.

debian/mariadb-common.postrm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/bin/bash -e
1+
#!/bin/bash
2+
set -e
23

34
if [ "$1" = "purge" ]; then
45
rmdir /etc/mysql/conf.d 2>/dev/null || true

debian/mysql-common.postrm

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/bin/bash -e
1+
#!/bin/bash
2+
set -e
23

34
if [ "$1" = "purge" ]; then
45
rmdir /etc/mysql 2>/dev/null || true

0 commit comments

Comments
 (0)