forked from r8/vagrant-lamp
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Vagrantfile
64 lines (54 loc) · 2.26 KB
/
Vagrantfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") 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.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "precise32"
# The url from where the 'config.vm.box' box will be fetched if it
# doesn't already exist on the user's system.
config.vm.box_url = "http://files.vagrantup.com/precise32.box"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine.
# Forward MySql port on 33066, used for connecting admin-clients
# to localhost:33066
config.vm.network :forwarded_port, guest: 3306, host: 33066
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network :private_network, ip: "47.47.47.47"
# Set share folder permissions to 777 so that apache can write files
config.vm.synced_folder ".", "/vagrant", mount_options: ['dmode=777','fmode=666']
# config.vm.synced_folder "./public/", "/home/public/", :extra => 'dmode=777,fmode=666'
# Provider-specific configuration so you can fine-tune VirtualBox for Vagrant.
# These expose provider-specific options.
config.vm.provider :virtualbox do |vb|
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "512"]
end
# Enable provisioning with chef solo, specifying a cookbooks path, roles
# path, and data_bags path (all relative to this Vagrantfile), and adding
# some recipes and/or roles.
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = "cookbooks"
chef.data_bags_path = "data_bags"
chef.add_recipe "vagrant_main"
chef.json.merge!({
"mysql" => {
"server_root_password" => "root",
"server_repl_password" => "root",
"server_debian_password" => "root",
"bind_address" => "0.0.0.0"
},
"oh_my_zsh" => {
:users => [
{
:login => 'vagrant',
:theme => 'jtriley',
:plugins => ['gem git']
}
]
}
})
end
end