From 4a1c3b261a934d7f333cb335f69dc295aa344ea6 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Sun, 21 Dec 2014 10:58:39 +0100 Subject: [PATCH] tests: add xmlstarlet in containers It can be removed once https://github.com/ceph/ceph/pull/3228 is merged and xmlstarlet is found in ceph.spec.in and debian/control. Signed-off-by: Loic Dachary --- src/test/centos/Dockerfile.in | 3 +-- src/test/ubuntu/Dockerfile.in | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/test/centos/Dockerfile.in b/src/test/centos/Dockerfile.in index 6e2edf2b0cbdf..7b4aa7673d963 100644 --- a/src/test/centos/Dockerfile.in +++ b/src/test/centos/Dockerfile.in @@ -38,6 +38,5 @@ RUN rpm -ivh epel-release-7-5.noarch.rpm # build dependencies RUN cd /root ; ./install-deps.sh # development tools -RUN yum install -y ccache valgrind gdb git python-virtualenv gdisk kpartx hdparm jq sudo +RUN yum install -y ccache valgrind gdb git python-virtualenv gdisk kpartx hdparm jq sudo xmlstarlet RUN useradd -M --uid %%user_id%% %%USER%% && echo '%%USER%% ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers - diff --git a/src/test/ubuntu/Dockerfile.in b/src/test/ubuntu/Dockerfile.in index e6c55678abdd6..3cf842ebee8eb 100644 --- a/src/test/ubuntu/Dockerfile.in +++ b/src/test/ubuntu/Dockerfile.in @@ -27,5 +27,5 @@ RUN apt-get update # build dependencies RUN cd /root ; ./install-deps.sh # development tools -RUN apt-get install -y ccache valgrind gdb python-virtualenv gdisk kpartx hdparm jq +RUN apt-get install -y ccache valgrind gdb python-virtualenv gdisk kpartx hdparm jq xmlstarlet RUN useradd -M --uid %%user_id%% %%USER%% && echo '%%USER%% ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers -- 2.39.5