Skip to content

Instantly share code, notes, and snippets.

@kaikousa
Last active August 29, 2015 14:22
Show Gist options
  • Save kaikousa/f2fe286f07299c44b350 to your computer and use it in GitHub Desktop.
Save kaikousa/f2fe286f07299c44b350 to your computer and use it in GitHub Desktop.
Provision a Vagrant + Ansible -ready Ubuntu-machine
#!/bin/sh
# Virtualbox for Vagrant
sudo apt-get install virtualbox
# Vagrant
sudo apt-get install vagrant
# Ansible
sudo apt-get install software-properties-common
sudo apt-add-repository ppa:ansible/ansible
sudo apt-get update
sudo apt-get install ansible
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment