Skip to content

Instantly share code, notes, and snippets.

@ifnull
Created March 28, 2014 03:16
Show Gist options
  • Save ifnull/9824554 to your computer and use it in GitHub Desktop.
Save ifnull/9824554 to your computer and use it in GitHub Desktop.
Salt Master Debug
fileserver_backend:
- roots
file_roots:
base:
- /srv/cloudseed-formulas
- /srv/salt
pillar_roots:
base:
- /srv/pillar
# -*- 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