Update cloud-init.sh

This commit is contained in:
Jeffrey Paul 2018-03-06 17:20:50 -05:00 committed by GitHub
parent cccf7fabbf
commit c9b3ffae81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -11,8 +11,16 @@
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get -y upgrade
apt-get -y install vim byobu screen build-essential git mosh bash-completion
apt-get -y install vim byobu screen build-essential git mosh bash-completion golang-go python-pip python3-pip
pip3 install --upgrade pip
pip3 install awscli pipenv aws-shell
curl -L https://github.com/docker/machine/releases/download/v0.14.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine
chmod +x /usr/local/bin/docker-machine
# create user if doesn't exist
if [[ ! -d /home/sneak ]]; then
useradd -m -s /bin/bash sneak
usermod -a -G sudo sneak
@ -39,6 +47,8 @@ if [[ ! -d ~/hacks ]]; then
git clone https://github.com/sneak/hacks.git
fi
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
mkdir -p ~/.local/bashrc.d
mkdir -p ~/.local/profile.d