mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-14 18:32:55 +00:00
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>
This commit is contained in:
parent
ebb1a730c1
commit
07cc5b501c
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue