Created
January 4, 2014 13:54
-
-
Save ecowden/8255555 to your computer and use it in GitHub Desktop.
Vagrantfile for Puppet CentOS 6.4 Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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