]> git-server-git.apps.pok.os.sepia.ceph.com Git - s3-tests.git/commitdiff
Explicitly reference Fedora Python 2 dependency explicit-python-2 276/head
authorAndrew Gaul <andrew@gaul.org>
Sun, 19 May 2019 15:34:52 +0000 (00:34 +0900)
committerAndrew Gaul <andrew@gaul.org>
Sun, 19 May 2019 15:36:50 +0000 (00:36 +0900)
Previously the aliases would install but subsequent runs would not
find the exact package name.  This caused yum to unnecessarily re-run.

Signed-off-by: Andrew Gaul <andrew@gaul.org>
bootstrap

index d7e66dc2b3c33d8bb71d44b3f9dd624d86dad6cf..9fb71517c5c2690053cf3e2a92dd2a89673f18a5 100755 (executable)
--- a/bootstrap
+++ b/bootstrap
@@ -13,7 +13,7 @@ if [ -f /etc/debian_version ]; then
         sudo apt-get -y install $missing
     fi
 elif [ -f /etc/fedora-release ]; then
-    for package in python-pip python2-virtualenv python-devel libevent-devel libffi-devel libxml2-devel libxslt-devel zlib-devel; do
+    for package in python2-pip python2-virtualenv python2-devel libevent-devel libffi-devel libxml2-devel libxslt-devel zlib-devel; do
         if [ "$(rpm -qa $package 2>/dev/null)" == "" ]; then
             missing="${missing:+$missing }$package"
         fi