CC-2664: Airtime install should check if the DEB package is installed

and abort if so

- done
This commit is contained in:
James 2011-08-18 17:34:26 -04:00
parent 8c2e622552
commit c544e0fb1b
1 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,11 @@
#!/bin/bash
DEB=$(dpkg -s lame 2> /dev/null | grep Status)
if [[ "$DEB" = "Status: install ok installed" ]]; then
echo -e "\nDebian package of Airtime detected. Please use the debian package to upgrade.\n"
exit 1
fi
echo -e "\n******************************** Install Begin *********************************"
# Absolute path to this script