Merge pull request #374 from linuxserver/universal-package-install-nonint

set noninteractive for apt-get
This commit is contained in:
aptalca
2022-05-13 10:20:41 -04:00
committed by GitHub
+1
View File
@@ -15,6 +15,7 @@ for PKG in "${INSTALL_PACKAGES[@]}"; do
# Ubuntu
if [ -f /usr/bin/apt ]; then
DEBIAN_FRONTEND="noninteractive"
apt-get install -y --no-install-recommends ${PKG}
fi