Last active
August 15, 2018 14:05
-
-
Save nicopaez/affe2f1127b065d2c4e50716b04e44de to your computer and use it in GitHub Desktop.
NicoPaez DevOps Tutorial Preparation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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