From c5b6a436bd1a93254a32a002239197c28b16841e Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Tue, 6 Oct 2015 10:33:39 -0700 Subject: [PATCH] Remove debug output in base image yum command The base image contains -d 10 in a yum command which prints unhelpful debug output for one of the yum commands. Remove the extranous debug output. backport: liberty TrivialFix This patch is a trivial fix and is a test to set boundaries on what a trivial fix looks like that doesn't require a bug tracker entry. If reviewers feel a trivial fix isn't documented properly by this commit message, please weigh in, as this is a slight suggested change to our policy as first institued by the Magnum community and brought to my attention by Jeff Peeler. Hopefully this compromise won't be abused :) Change-Id: I57f00978d0baaefd73592f4ad6a655e663d83478 --- docker/base/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/base/Dockerfile.j2 b/docker/base/Dockerfile.j2 index 28924b0d58..7fd8b789cb 100644 --- a/docker/base/Dockerfile.j2 +++ b/docker/base/Dockerfile.j2 @@ -69,7 +69,7 @@ RUN subscription-manager repos --enable rhel-7-server-rpms \ # CentOS 7.1 workaround for conflicting packages with libvirt RUN rpm -e --nodeps systemd-container systemd-container-libs \ && rpm -e --nodeps yum-plugin-fastestmirror \ - && yum -d 10 -y install systemd systemd-libs systemd-devel \ + && yum -y install systemd systemd-libs systemd-devel \ && yum install -y epel-release \ && yum clean all