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
| Vagrant::Config.run 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. | |
| # The path to the Berksfile to use with Vagrant Berkshelf | |
| # config.berkshelf.berksfile_path = "./Berksfile" | |
| # An array of symbols representing groups of cookbook described in the Vagrantfile | |
| # to skip installing and copying to Vagrant's shelf. |
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
| template "/etc/bind/named.conf.local" do | |
| source "named.conf.local.erb" | |
| owner "root" | |
| group "bind" | |
| mode 00644 | |
| variables({ | |
| :role => node["bind"]["role"], | |
| :masters => node["bind"]["masters"], | |
| :directory => node["bind"]["zone_dir"] | |
| }) |
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
| default['elasticsearch']['version'] = "0.19.6" | |
| default['elasticsearch']['checksum'] = 'f0ec550fb86c4bc8f08afb15de4e197e85f9fcfd352fbb7eb49aaff98f7731dd' | |
| default['elasticsearch']['url'] = "http://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-#{node['elasticsearch']['version']}.tar.gz" | |
| default['elasticsearch']['home_path'] = "/usr/lib" | |
| default['elasticsearch']['home_dir'] = "#{node['elasticsearch']['home_path']}/elasticsearch" |
NewerOlder