Update cloud-init.sh

pull/1/head
Jeffrey Paul 6 years ago committed by GitHub
parent cccf7fabbf
commit c9b3ffae81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      cloud-init.sh

@ -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

Loading…
Cancel
Save