Created
March 28, 2014 03:16
-
-
Save ifnull/9824554 to your computer and use it in GitHub Desktop.
Salt Master Debug
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
fileserver_backend: | |
- roots | |
file_roots: | |
base: | |
- /srv/cloudseed-formulas | |
- /srv/salt | |
pillar_roots: | |
base: | |
- /srv/pillar |
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_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. | |
# Every Vagrant virtual environment requires a box to build off of. | |
config.vm.box = "centos-6" | |
config.vm.box_url = "https://github.com/2creatives/vagrant-centos/releases/download/v6.5.1/centos65-x86_64-20131205.box" | |
## Networking | |
config.ssh.forward_agent = true | |
config.vm.synced_folder "../sena/cloudseed/default/srv/salt/", "/srv/salt/" | |
config.vm.synced_folder "../cloudseed-formulas", "/srv/cloudseed-formulas/" | |
# Box specs | |
config.vm.provider "virtualbox" do |v| | |
v.name = "CentOS Test" | |
v.customize ["modifyvm", :id, "--cpus", "2"] | |
v.customize ["modifyvm", :id, "--memory", "2048"] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment