Less verbose apt, please
parent
ffdd0ac53d
commit
3f1b4452f0
|
@ -528,8 +528,8 @@ buildRequiredPackageLists () {
|
||||||
apk update
|
apk update
|
||||||
;;
|
;;
|
||||||
debian)
|
debian)
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get update
|
DEBIAN_FRONTEND=noninteractive apt-get update -q
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get autoremove --purge -y
|
DEBIAN_FRONTEND=noninteractive apt-get autoremove --purge -y -q
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
if test -n "$buildRequiredPackageLists_persistent"; then
|
if test -n "$buildRequiredPackageLists_persistent"; then
|
||||||
|
@ -603,7 +603,7 @@ installRequiredPackages () {
|
||||||
apk add $PACKAGES_PERSISTENT $PACKAGES_VOLATILE
|
apk add $PACKAGES_PERSISTENT $PACKAGES_VOLATILE
|
||||||
;;
|
;;
|
||||||
debian)
|
debian)
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y $PACKAGES_PERSISTENT $PACKAGES_VOLATILE
|
DEBIAN_FRONTEND=noninteractive apt-get install -qq -y $PACKAGES_PERSISTENT $PACKAGES_VOLATILE
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue