[fix] Install dialog as pre-dependency if not automode

This commit is contained in:
Jérôme Lebleu 2016-03-27 15:45:07 +02:00
parent 5cb9fa475d
commit a32f28d007

View file

@ -95,10 +95,17 @@ upgrade_system() {
} }
installscript_dependencies() { installscript_dependencies() {
# install dependencies of the install script itself # dependencies of the install script itself
local DEPENDENCIES="lsb-release wget whiptail"
if [[ "$AUTOMODE" == "0" ]] ;
then
DEPENDENCIES+=" dialog"
fi
apt_get_wrapper -o Dpkg::Options::="--force-confold" \ apt_get_wrapper -o Dpkg::Options::="--force-confold" \
-y --force-yes install \ -y --force-yes install \
lsb-release wget whiptail \ $DEPENDENCIES \
|| return 1 || return 1
} }