Files
mongo-php-driver/scripts/ubuntu/essentials.sh
2015-06-09 16:13:03 -07:00

11 lines
245 B
Bash

if [ ! -e ".provisioned" ]; then
# Tools you can't live without
apt-get update
apt-get install -y build-essential git vim libtool autoconf
# I can't stand emacs
echo 'set -o vi' | sudo tee /etc/profile.d/vishell.sh
touch .provisioned
fi