package-installs assumes packages have a pkg-map

Our package-installs script fails when installing a package which does
not have a pkg-map but a pkg-map file exist for the element.

Change-Id: I3dab802e23bccfc916efcc1c70c6ce6c4a9ccf67
This commit is contained in:
Gregory Haynes 2014-10-27 09:42:58 -07:00
parent 1e55938148
commit c27e32f769

View File

@ -50,7 +50,12 @@ for PACKAGEFILE in $(find $WORKDIR -maxdepth 1 -name "package-installs-*" ); do
if [ -e /usr/share/pkg-map/$element_name ]; then
# map the package to its true name
pkg=$(pkg-map --element $element_name $pkg)
set +e
map_pkg=$(pkg-map --element $element_name $pkg)
if [ $? -eq 0 ]; then
pkg=$map_pkg
fi
set -e
fi
PACKAGES="$PACKAGES $pkg"