From: Kefu Chai Date: Thu, 26 Dec 2019 07:07:04 +0000 (+0800) Subject: install-deps.sh: pass "-y" to "dnf copr enable" X-Git-Tag: v15.1.0~304^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=915fe2a7cb9d238b7fb181462626dc077bf35fd8;p=ceph.git 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 --- diff --git a/install-deps.sh b/install-deps.sh index f141f6f1596c..978e8eba0bfd 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