Skip to content

Instantly share code, notes, and snippets.

@prajnadnayak
prajnadnayak / Vagrantfile-puppet-ubuntu-multi
Created November 23, 2017 10:33 — forked from frozenfoxx/Vagrantfile-puppet-ubuntu-multi
A simple Vagrantfile for spinning up a master-agent pair.
Vagrant.require_version ">= 1.5.0"
require 'vagrant-hosts'
require 'vagrant-auto_network'
Vagrant.configure('2') do |config|
config.vm.define :puppetmaster do |node|
# An index of pre-built boxes can be found at:
#
# https://vagrantcloud.com/puppetlabs
@prajnadnayak
prajnadnayak / Vagrantfile
Created November 23, 2017 10:32 — forked from Sharpie/Vagrantfile
A simple Vagrantfile for spinning up a master-agent pair.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# This configuration requires Vagrant 1.5 or newer and two plugins:
#
# vagrant plugin install vagrant-hosts ~> 2.1.4
# vagrant plugin install vagrant-auto_network ~> 1.0.0
#
# After installation, the following steps will spin up a master and agent that
# can communicate with each other: