Last active
August 29, 2015 14:16
-
-
Save kreas/dd58cf7d64437506d895 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo Provisioning Evergreen... | |
echo - Installing dependencies | |
sudo apt-get update -y -qq > /dev/null | |
sudo apt-get install curl -y -qq > /dev/null | |
echo - Installing other software | |
sudo apt-get -y install libxslt-dev libxml2-dev | |
sudo apt-get -y install nodejs | |
echo Installing Git ======================== | |
sudo apt-get -y install git-core | |
echo Install TMUX ========================== | |
sudo apt-get install tmux | |
command curl https://raw.githubusercontent.com/kreas/.bashfiles/master/.tmux.conf > /root/.tmux.conf | |
echo Installing RVM ======================== | |
sudo gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 | |
command curl -L https://get.rvm.io | bash -s stable --ruby=2.1.5 --gems=bundler | |
echo Install mongodb ======================== | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 | |
echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list | |
sudo apt-get update -y -qq > /dev/null | |
sudo apt-get -y install mongodb-org | |
echo Installing Redis ======================== | |
sudo apt-get -y install redis-server | |
source /root/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment