use the 'dont ask' prefix for system upgrade as well

This commit is contained in:
Cyryl Plotnicki-Chudyk 2015-07-19 10:34:30 +02:00
parent eb2efe2fee
commit b57213f61c

View file

@ -1,16 +1,18 @@
#!/bin/bash #!/bin/bash
sudo apt-get update
sudo apt-get dist-upgrade -y
# detect if building inside a CI system, like Travis # detect if building inside a CI system, like Travis
if [ -z ${IN_CI+x} ]; then if [ -z ${IN_CI+x} ]; then
INSTALL_COMMAND="sudo DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=\"--force-confdef\" -o Dpkg::Options::=\"--force-confnew\" install"; COMMAND_PREFIX="DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=\"--force-confdef\" -o Dpkg::Options::=\"--force-confnew\"";
else else
INSTALL_COMMAND="sudo apt-get install -y"; COMMAND_PREFIX="apt-get -y";
fi fi
$INSTALL_COMMAND="$INSTALL_COMMAND meld whois zsh tmux vim atop aria2 curl pv pixz gajim tor torsocks nodejs npm terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools aircrack-ng macchanger" sudo apt-get update
UPGRADE_COMMAND="sudo $COMMAND_PREFIX dist-upgrade"
eval ${UPGRADE_COMMAND}
$INSTALL_COMMAND="$COMMAND_PREFIX install meld whois zsh tmux vim atop aria2 curl pv pixz gajim tor torsocks nodejs npm terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools aircrack-ng macchanger"
eval ${INSTALL_COMMAND} eval ${INSTALL_COMMAND}
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
DIR="$DIR/../" DIR="$DIR/../"
DIR="$DIR" $DIR/common/configure_fresh_system DIR="$DIR" $DIR/common/configure_fresh_system