Sha256: f5756274e1345eaa31489e93ebd68e910dca6abab7904523026bfefd4b584f6b
Contents?: true
Size: 655 Bytes
Versions: 3
Compression:
Stored size: 655 Bytes
Contents
require "../lib/vagrant-salt" Vagrant::Config.run do |config| config.vm.box = "precise64" ## Use all the defaults: config.vm.provision :salt do |salt| salt.run_highstate = true ## Optional Settings: # salt.minion_config = "salt/minion.conf" ## Only Use these with a masterless setup to ## load your state tree: # salt.salt_file_root_path = "salt/roots/salt" # salt.salt_pillar_root_path = "salt/roots/pillar" ## If you have a remote master setup, you can add ## your preseeded minion key # salt.master = true # salt.minion_key = "salt/key/testing.pem" # salt.minion_pub = "salt/key/testing.pub" end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-salt-0.1.2 | example/Vagrantfile |
vagrant-salt-0.1.1 | example/Vagrantfile |
vagrant-salt-0.1 | example/Vagrantfile |