From 7d1b936d802c553190806a20833a23ff48e29a30 Mon Sep 17 00:00:00 2001 From: Lucilio Correia Date: Tue, 22 Oct 2024 16:19:20 -0300 Subject: [PATCH] fix: install library needed to connect to new servers --- scripts/install-mariadb-tools.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install-mariadb-tools.sh b/scripts/install-mariadb-tools.sh index ea07ac5..f92cd26 100644 --- a/scripts/install-mariadb-tools.sh +++ b/scripts/install-mariadb-tools.sh @@ -3,6 +3,8 @@ # # MySQL install tools # Install mysql and mysqldump to container +# - mariadb-client (mariadb tools) +# - mariadb-connector-c (fills the gap with new sha password protocol) # -apk update && apk add mariadb-client; \ No newline at end of file +apk update && apk add mariadb-client mariadb-connector-c; \ No newline at end of file