Guest User

Untitled

a guest
Feb 20th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Vagrant.configure("2") do |config|
  2. config.vm.define "centos-7-cli" do |c-cli|
  3. c-cli.vm.box = "centos/7"
  4. c-cli.vm.network "private_network", ip: "10.0.0.10"
  5. c-cli.vm.hostname = "centos-7-cli"
  6. end
  7.  
  8. config.vm.define "ubuntu-cli" do |u-cli|
  9. u-cli.vm.box = "ubuntu/xenial"
  10. u-cli.vm.network "private_network", ip: "10.0.0.10"
  11. u-cli.vm.hostname = "ubuntu-cli"
  12. end
  13. end
Add Comment
Please, Sign In to add comment