Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. Vagrant.configure(2) do |config|
  5.  
  6. config.vm.box = "minimal/trusty64"
  7.  
  8. config.vm.provider "virtualbox" do |vb|
  9. vb.memory = "512"
  10. end
  11.  
  12. config.vm.provision "shell", inline: <<-SHELL
  13. echo "Welcome to NicoPaez DevOps tutorial"
  14. SHELL
  15.  
  16. end
Add Comment
Please, Sign In to add comment