From 28ed2440cb249a05d904c2fa9d1b5d5ae31550f3 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Tue, 8 Jun 2021 18:32:57 +0200 Subject: [PATCH] fix: [mariadb] dump was broken due to ``shlib`` missing We don't have ``shlib`` in docker image, and we don't need it for this script. So the dependency was removed. Signed-off-by: Valentin Lab --- mariadb/resources/bin/mysql-backup | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mariadb/resources/bin/mysql-backup b/mariadb/resources/bin/mysql-backup index 485ee38..9bbaf98 100755 --- a/mariadb/resources/bin/mysql-backup +++ b/mariadb/resources/bin/mysql-backup @@ -1,9 +1,5 @@ #!/bin/bash -. /etc/shlib - -include common -include pretty usage="$exname [--host HOST] [DATABASE...]" @@ -13,7 +9,7 @@ host= while [ "$1" ]; do case "$1" in "--help"|"-h") - print_usage + echo "$usage" >&2 exit 0 ;; "--host")