-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
22 lines (21 loc) · 742 Bytes
/
Vagrantfile
File metadata and controls
22 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Vagrant.configure("2") do |config|
config.berkshelf.enabled = true
config.omnibus.chef_version = :latest
config.vm.box = 'centos56parallels'
config.vm.box_url = "http://download.parallels.com/desktop/vagrant/centos64.box"
config.vm.hostname = File.basename(Dir.getwd)
config.vm.network :public_network
config.vm.provision :chef_solo do |chef|
chef.custom_config_path = "Vagrantfile.chef"
chef.json = {
:mysql => {
:server_root_password => 'BPS4Mysql',
:server_debian_password => 'debpass',
:server_repl_password => 'replpass'
}
}
chef.run_list = [
'recipe[bot::default]'
]
end
end