Skip to content
Snippets Groups Projects
Commit d8577f5d authored by Mike Marchetti's avatar Mike Marchetti
Browse files

bug 394 fixed: fail if package cannot be installed


Signed-off-by: default avatarMike Marchetti <mmarchetti@sandvine.com>
Change-Id: Iea828cb935a823a066557f0e2696fbf92cd6e895
parent 26890cdb
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,11 @@ function nat(){
sudo $OSM_DEVOPS/installers/nat_osm
}
function FATAL(){
echo "FATAL error: Cannot install OSM due to \"$1\""
exit 1
}
#Update RO, SO and UI:
function update(){
echo -e "\nUpdating components"
......@@ -375,7 +380,10 @@ fi
need_packages="git jq"
for package in $need_packages; do
echo -e "Checking required packages: $package"
dpkg -l $package &>/dev/null || ! echo -e " $package not installed.\nInstalling $package requires root privileges" || sudo apt-get install -y $package
dpkg -l $package &>/dev/null \
|| ! echo -e " $package not installed.\nInstalling $package requires root privileges" \
|| sudo apt-get install -y $package \
|| FATAL "failed to install $package"
done
if [ -z "$TEST_INSTALLER" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment