Skip to content
Snippets Groups Projects
Commit f39396cf authored by Steven Dake's avatar Steven Dake
Browse files

Install which if its not installed in base

Some variants of RHEL containers are missing the 'which' command.
Percona's software used by mariadb depends on which, but doesn't have
a hard dependency requirement since it is usually installed in the
distribution.  To make mariadb work multinode on RHEL, install which
all the time for RPM distros.

Change-Id: I2c6aaa77a1fc8b7028b658a0dfd1935c1f1d738e
Partially-Implements: blueprint rhel-based-image-support
parent 1b33345f
No related branches found
No related tags found
No related merge requests found
...@@ -148,6 +148,7 @@ RUN yum install -y \ ...@@ -148,6 +148,7 @@ RUN yum install -y \
python-webtest \ python-webtest \
python-werkzeug \ python-werkzeug \
python-wsme \ python-wsme \
which \
&& yum clean all && yum clean all
# Endif for install_type binary # Endif for install_type binary
...@@ -174,6 +175,7 @@ RUN yum update -y \ ...@@ -174,6 +175,7 @@ RUN yum update -y \
python-oslo-policy \ python-oslo-policy \
sqlite-devel \ sqlite-devel \
tar \ tar \
which \
&& yum clean all && yum clean all
# Endif for install_type source # Endif for install_type source
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment