Merge pull request #2 from adam12/fix/apt-commands

Fix commands for apt package manager.
This commit is contained in:
Carl Mercier 2013-02-23 09:46:56 -08:00
commit 153bfb1bd7
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ package () {
fi
if [ "$PACKAGE_MANAGER" == 'apt-get' ]; then
DEBIAN_FRONTEND=noninteractive apt-get install -y $1
DEBIAN_FRONTEND=noninteractive apt-get install -y --force-yes $1
elif [ "$PACKAGE_MANAGER" == 'yum' ]; then
yum install -y $1
elif [ "$PACKAGE_MANAGER" == 'brew' ]; then
@ -193,7 +193,7 @@ test_package_installed () {
fi
if [ "$PACKAGE_MANAGER" == 'apt-get' ]; then
dpkg -l $1
dpkg-query -l "$1" | grep -q ^.i
return $?
fi