Skip to content

Instantly share code, notes, and snippets.

@nicopaez
Last active August 15, 2018 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nicopaez/affe2f1127b065d2c4e50716b04e44de to your computer and use it in GitHub Desktop.
Save nicopaez/affe2f1127b065d2c4e50716b04e44de to your computer and use it in GitHub Desktop.
NicoPaez DevOps Tutorial Preparation
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "minimal/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "512"
vb.customize ["modifyvm", :id, "--usb", "on"]
vb.customize ["modifyvm", :id, "--usbehci", "off"]
end
config.vm.provision "shell", inline: <<-SHELL
echo "Welcome to NicoPaez DevOps tutorial"
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment