2014-09-01 21:42:28 +02:00
|
|
|
#!/bin/bash
|
2015-07-19 10:28:15 +02:00
|
|
|
# detect if building inside a CI system, like Travis
|
2015-07-19 11:06:13 +02:00
|
|
|
echo "choosing the more interactive installation method"
|
|
|
|
COMMAND_PREFIX="apt-get -y";
|
2015-07-19 10:50:33 +02:00
|
|
|
set -e
|
2015-07-19 10:28:15 +02:00
|
|
|
|
2015-07-19 10:34:30 +02:00
|
|
|
sudo apt-get update
|
2015-07-19 10:58:01 +02:00
|
|
|
|
2015-07-19 11:06:13 +02:00
|
|
|
UPGRADE_COMMAND="sudo $COMMAND_PREFIX dist-upgrade"
|
|
|
|
eval ${UPGRADE_COMMAND}
|
2015-07-19 10:34:30 +02:00
|
|
|
|
2015-07-25 16:13:29 +02:00
|
|
|
INSTALL_COMMAND="sudo $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 realpath python3-dev python3 python3-pip apt-file"
|
2015-07-19 10:28:15 +02:00
|
|
|
eval ${INSTALL_COMMAND}
|
2015-07-19 10:34:30 +02:00
|
|
|
|
2014-10-11 10:58:07 +02:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2015-01-25 09:57:25 +01:00
|
|
|
DIR="$DIR/../"
|
2015-04-30 22:29:17 +02:00
|
|
|
DIR="$DIR" $DIR/common/configure_fresh_system
|
2014-09-01 21:42:28 +02:00
|
|
|
|