From 29c542186b8bc1b3d54611574aa953a03039d2fe Mon Sep 17 00:00:00 2001 From: Stephan Michaud Date: Tue, 23 Aug 2016 16:44:48 -0400 Subject: [PATCH] Add mariadb client binaries to kolla-toolbox The kolla-toolbox container contains ansible which has the mysql_db module which helps on various mysql tasks such as db creation. The mysql_db module requires certain mysql binaries in order to accomplish tasks such as restoring a database from a dump. This change adds those client libraries which weren't previously included in the container. Change-Id: I6516838381bf9327c8901fc4c32ebd5151fb053f Signed-off-by: Stephan Michaud Closes-Bug: #1616155 --- docker/kolla-toolbox/Dockerfile.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/kolla-toolbox/Dockerfile.j2 b/docker/kolla-toolbox/Dockerfile.j2 index c6c8bd9158..31eb47866a 100644 --- a/docker/kolla-toolbox/Dockerfile.j2 +++ b/docker/kolla-toolbox/Dockerfile.j2 @@ -17,6 +17,7 @@ MAINTAINER {{ maintainer }} 'libxslt-devel', 'MariaDB-devel', 'MariaDB-shared', + 'MariaDB-client', 'openssl-devel', 'python-devel', 'openssh-clients' @@ -32,6 +33,7 @@ MAINTAINER {{ maintainer }} 'jq', 'libffi-dev', 'libmariadbclient-dev', + 'mariadb-client', 'libssl-dev', 'libxslt1-dev', 'python-dev'