Merge pull request #559 from dan019/repair-apt

Repairs apt-get incorrect options
This commit is contained in:
Mcat12 2016-07-04 16:22:36 -04:00 committed by GitHub
commit 4657959790

View file

@ -80,7 +80,7 @@ elif [ -x "$(command -v apt-get)" ];then
PKG_CACHE="/var/cache/apt"
UPDATE_PKG_CACHE="$PKG_MANAGER -qq update"
PKG_UPDATE="$PKG_MANAGER upgrade"
PKG_INSTALL="$PKG_MANAGER -y -qq install"
PKG_INSTALL="$PKG_MANAGER --yes --quiet install"
PKG_COUNT="$PKG_MANAGER -s -o Debug::NoLocking=true upgrade | grep -c ^Inst"
INSTALLER_DEPS=( apt-utils whiptail dhcpcd5)
PIHOLE_DEPS=( dnsutils bc dnsmasq lighttpd php5-common php5-cgi php5 git curl unzip wget sudo )