Sha256: d17607e747996fbb1cbb1251d757a2946ad8b5a786a469c9ae639168dd8e8ac0
Contents?: true
Size: 731 Bytes
Versions: 3
Compression:
Stored size: 731 Bytes
Contents
# require "../lib/vagrant-salt" Vagrant::Config.run do |config| ## Chose your base box config.vm.box = "precise64" ## For masterless, mount your salt file root config.vm.share_folder "salt_file_root", "/srv", "salt/roots/" ## Use all the defaults: config.vm.provision :salt do |salt| salt.run_highstate = false ## Optional Settings: # salt.minion_config = "salt/minion.conf" # salt.temp_config_dir = "/existing/folder/on/basebox/" # salt.salt_install_type = "git" # salt.salt_install_args = "develop" ## If you have a remote master setup, you can add ## your preseeded minion key # salt.minion_key = "salt/key/minion.pem" # salt.minion_pub = "salt/key/minion.pub" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-salt-0.3.2 | example/Vagrantfile |
vagrant-salt-0.3.1 | example/Vagrantfile |
vagrant-salt-0.2.0 | example/Vagrantfile |