Skip to content

Instantly share code, notes, and snippets.

@ecowden
Created January 4, 2014 13:54
Show Gist options
  • Save ecowden/8255555 to your computer and use it in GitHub Desktop.
Save ecowden/8255555 to your computer and use it in GitHub Desktop.
Vagrantfile for Puppet CentOS 6.4 Box
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# CentOS box prompts for password when using `vagrant ssh`, but others work fine.
# Alternative boxes left in to make switching and verifying easier.
# CentOS
config.vm.box = "puppet-centos-6_4"
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210.box"
# Ubuntu
# config.vm.box = "puppet-ubuntu-1204"
# config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210.box"
# Fedora
# config.vm.box = "puppet-fedora-18"
# config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/fedora-18-x64-vbox4210.box"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment