Avoid to install a blank list of packages
There are some situations where the list of packages to install in a image is blank (packages blacklisted). Change-Id: I315f97fe619c25b36cf47ed1b7a65936b753312e
This commit is contained in:
parent
4fd84db547
commit
226e92fa4d
@ -77,7 +77,10 @@ if [ -n "$WHITELIST" ]; then
|
|||||||
else
|
else
|
||||||
PKGS=$(map-packages $WHITELIST)
|
PKGS=$(map-packages $WHITELIST)
|
||||||
fi
|
fi
|
||||||
echo "Installing $PKGS"
|
if [ -z "${PKGS}" ]; then
|
||||||
|
echo "Not running install-packages $ACTION with empty packages list"
|
||||||
|
else
|
||||||
|
echo "Running install-packages ${ACTION}. Package list: $PKGS"
|
||||||
yum -y $ACTION $EXTRA_ARGS $PKGS
|
yum -y $ACTION $EXTRA_ARGS $PKGS
|
||||||
for pkg in "$@"; do
|
for pkg in "$@"; do
|
||||||
if [ "$pkg" = "python-pip" ] ; then
|
if [ "$pkg" = "python-pip" ] ; then
|
||||||
@ -85,3 +88,4 @@ if [ -n "$WHITELIST" ]; then
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user