Merge "Avoid to install a blank list of packages"

This commit is contained in:
Jenkins 2014-07-30 01:59:45 +00:00 committed by Gerrit Code Review
commit 280513194e

View File

@ -80,11 +80,15 @@ if [ -n "$WHITELIST" ]; then
else else
PKGS=$(map-packages $WHITELIST) PKGS=$(map-packages $WHITELIST)
fi fi
echo "Installing $PKGS" if [ -z "${PKGS}" ]; then
yum -y $ACTION $EXTRA_ARGS $PKGS echo "Not running install-packages $ACTION with empty packages list"
for pkg in "$@"; do else
if [ "$pkg" = "python-pip" ] ; then echo "Running install-packages ${ACTION}. Package list: $PKGS"
alternatives --install /usr/bin/pip pip /usr/bin/pip-python 10 yum -y $ACTION $EXTRA_ARGS $PKGS
fi for pkg in "$@"; do
done if [ "$pkg" = "python-pip" ] ; then
alternatives --install /usr/bin/pip pip /usr/bin/pip-python 10
fi
done
fi
fi fi