replace debconf-apt-progress with apt-get in install_dependent_packages()

Removes the need for conditional debconf-apt-progress dependency checking

Signed-off-by: bcambl <blayne@blaynecampbell.com>
pull/2962/head
bcambl 5 years ago
parent ebb1a730c1
commit 07cc5b501c

@ -1632,7 +1632,7 @@ install_dependent_packages() {
# amount of download traffic.
# NOTE: We may be able to use this installArray in the future to create a list of package that were
# installed by us, and remove only the installed packages, and not the entire list.
if is_command debconf-apt-progress ; then
if is_command apt-get ; then
# For each package,
for i in "$@"; do
printf " %b Checking for %s..." "${INFO}" "${i}"
@ -1645,7 +1645,7 @@ install_dependent_packages() {
done
if [[ "${#installArray[@]}" -gt 0 ]]; then
test_dpkg_lock
debconf-apt-progress -- "${PKG_INSTALL[@]}" "${installArray[@]}"
"${PKG_INSTALL[@]}" "${installArray[@]}"
return
fi
printf "\\n"

Loading…
Cancel
Save