Skip to content

Instantly share code, notes, and snippets.

View DailyMatters's full-sized avatar
🎯
Focusing

Cláudio Ribeiro DailyMatters

🎯
Focusing
  • Lisbon
View GitHub Profile
@DailyMatters
DailyMatters / bootstrap.sh
Created September 25, 2015 19:49
My bootstrap file for Vagrant provisioning
#!/usr/bin/env bash
echo "START PROVISIONING";
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password password rootpass'
sudo debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password_again password rootpass'
apt-get update
apt-get install -y vim
apt-get install -y git
apt-get install -y composer