forked from tayasu/vagrant-codeigniter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
30 lines (29 loc) · 778 Bytes
/
Vagrantfile
File metadata and controls
30 lines (29 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = 'CentOS-5.7-i386.box'
config.vm.box_url = 'http://hglab.realworld.jp/boxes/CentOS-5.7-i386.box'
config.vm.network :hostonly, '33.33.33.99'
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = 'cookbooks'
chef.roles_path = "roles"
chef.add_role "vagrant-codeigniter"
chef.json.merge!({
:mysql55 => {
:version => '5.5.33-1.el5.remi',
},
:mysql => {
:database_name => 'codeigniter',
:server_root_password => ''
},
:apache => {
:package => 'httpd',
},
:languages => {
:perl => {
:version => '5.8.8'
}
}
})
end
end