summaryrefslogtreecommitdiff
path: root/contrib/podmanimage/upstream
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-07-22 15:50:18 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-07-24 05:45:10 -0400
commit2c9f18100fc6a2891b5b360b5a25fc00f591201e (patch)
tree5bc60b7f4259cfee801223b81c02c45c9a6ef980 /contrib/podmanimage/upstream
parent2f79497aba90229664c35fb738704d61e4528f44 (diff)
downloadpodman-2c9f18100fc6a2891b5b360b5a25fc00f591201e.tar.gz
podman-2c9f18100fc6a2891b5b360b5a25fc00f591201e.tar.bz2
podman-2c9f18100fc6a2891b5b360b5a25fc00f591201e.zip
Fix handling of shadow-utils
There seems to be a bug in rpm, where it fails silently if you specify rpm --restore --quiet shadow-utils. rpm --restore shadow-utils 2> /dev/null Does the right thing. [NO TESTS NEEDED] Might add tests from buildah, once we have them working correctly. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'contrib/podmanimage/upstream')
-rw-r--r--contrib/podmanimage/upstream/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/podmanimage/upstream/Dockerfile b/contrib/podmanimage/upstream/Dockerfile
index 01666e453..baad49e08 100644
--- a/contrib/podmanimage/upstream/Dockerfile
+++ b/contrib/podmanimage/upstream/Dockerfile
@@ -17,7 +17,7 @@ ENV GOPATH=/root/podman
# to the container.
# Finally remove the podman directory and a few other packages
# that are needed for building but not running Podman
-RUN yum -y update; rpm --restore --quiet shadow-utils; yum -y install --exclude container-selinux \
+RUN yum -y update; rpm --restore shadow-utils 2>/dev/null; yum -y install --exclude container-selinux \
--enablerepo=updates-testing \
btrfs-progs-devel \
containernetworking-cni \