From 915fe2a7cb9d238b7fb181462626dc077bf35fd8 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 26 Dec 2019 15:07:04 +0800 Subject: [PATCH] install-deps.sh: pass "-y" to "dnf copr enable" otherwise the copr repo won't be enabled. and dnf will bail out with following message: Do you really want to enable copr.fedorainfracloud.org/ktdreyer/ceph-el8? [y/N]: Error: Safe and good answer. Exiting. Signed-off-by: Kefu Chai --- install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-deps.sh b/install-deps.sh index f141f6f1596..978e8eba0bf 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -371,7 +371,7 @@ else # before EPEL8 and PowerTools provide all dependencies, we use sepia for the dependencies $SUDO dnf config-manager --add-repo http://apt-mirror.front.sepia.ceph.com/lab-extras/8/ $SUDO dnf config-manager --setopt gpgcheck=0 apt-mirror.front.sepia.ceph.com_lab-extras_8_ --save - $SUDO dnf copr enable ktdreyer/ceph-el8 + $SUDO dnf copr enable -y ktdreyer/ceph-el8 elif test $ID = rhel -a $MAJOR_VERSION = 8 ; then $SUDO subscription-manager repos --enable "codeready-builder-for-rhel-8-*-rpms" fi -- 2.47.3