Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3.  
  4. Vagrant.configure("2") do |config|
  5. %w(node1 node2).each do |vm_name|
  6. config.vm.define vm_name do |node|
  7. node.vm.box = "centos/6"
  8. end
  9. end
  10. # config.vm.provision "shell", inline: <<-SHELL
  11. # apt-get update
  12. # apt-get install -y apache2
  13. # SHELL
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement