Adding -y flag to apt-get calls.

This commit is contained in:
Ivan Malison 2013-03-30 22:54:22 -07:00
parent 5e7a3cfd93
commit caf785b53b
2 changed files with 8 additions and 7 deletions

13
.debian
View File

@ -1,12 +1,13 @@
sudo -v sudo -v
apt-get install zsh INSTALL="apt-get -y install"
apt-get install tmux $INSTALL zsh
apt-get install emacs $INSTALL tmux
apt-get install nmap $INSTALL emacs
apt-get install readline $INSTALL nmap
$INSTALL readline
# python dependencies # python dependencies
apt-get -y install libreadline5-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev $INSTALL libreadline5-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
cd ~/Downloads cd ~/Downloads
wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz wget http://python.org/ftp/python/2.7.2/Python-2.7.2.tgz
tar -xvf Python-2.7.2.tgz && cd Python-2.7.2/ tar -xvf Python-2.7.2.tgz && cd Python-2.7.2/

View File

@ -34,7 +34,7 @@ function install_essentials() {
echo "apt-get found." echo "apt-get found."
sudo apt-get -y install build-essential sudo apt-get -y install build-essential
sudo apt-get -y install git sudo apt-get -y install git
git clone git@github.com:IvanMalison/dotfiles.git sudo git clone git@github.com:IvanMalison/dotfiles.git
cd dotfiles cd dotfiles
source .debian source .debian
;; ;;