aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Arnold <ryan.arnold@linaro.org>2015-09-18 17:52:11 +0000
committerLinaro Code Review <review@review.linaro.org>2015-09-18 17:52:11 +0000
commit3f91a864a22853f1eff3d6500ca40a817e68e38f (patch)
tree96849adc2cd897d49e78f5d159883c1cbab606ac
parent493a2285cc0664f7c1c34b8959f05170b09edf7c (diff)
parent30bfe40061d32f7d078133eccce11ea6bfb2c612 (diff)
Merge "Use dnf instead of yum for Fedora"
-rwxr-xr-xscripts/fedora_lsb_install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/fedora_lsb_install.sh b/scripts/fedora_lsb_install.sh
index cab6b92d..f1e56bdf 100755
--- a/scripts/fedora_lsb_install.sh
+++ b/scripts/fedora_lsb_install.sh
@@ -56,9 +56,9 @@ TOP="http://ftp.linuxfoundation.org/pub/lsb/repositories/yum/lsb-${LSB_VER}"
wget --quiet -O /etc/yum.repos.d/LSB-${LSB_VER}-${LSB_ARCH}.repo $TOP/lsb-${LSB_VER}-${LSB_ARCH}.repo
# Update the repo with the new lsb repository but don't force a system update
-yum --assumeyes --quiet makecache
+dnf --assumeyes --quiet makecache
# This will install all of the lsb packages
-yum --assumeyes install lsb-task-dist-testkit lsb-task-app-testkit lsb-task-sdk
+dnf --assumeyes install lsb-task-dist-testkit lsb-task-app-testkit lsb-task-sdk
exit 0