-
Notifications
You must be signed in to change notification settings - Fork 181
/
Vagrantfile
123 lines (100 loc) · 3.63 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# encoding: utf-8
# vim: ft=ruby expandtab shiftwidth=2 tabstop=2
require 'yaml'
Vagrant.require_version '>= 1.8.6'
Vagrant.configure(2) do |config|
vccw_version = 'nightly';
_conf = YAML.load(
File.open(
File.join(File.dirname(__FILE__), 'provision/default.yml'),
File::RDONLY
).read
)
if File.exists?(File.join(ENV["HOME"], '.vccw/config.yml'))
_custom = YAML.load(
File.open(
File.join(ENV["HOME"], '.vccw/config.yml'),
File::RDONLY
).read
)
_conf.merge!(_custom) if _custom.is_a?(Hash)
end
if File.exists?(File.join(File.dirname(__FILE__), 'site.yml'))
_site = YAML.load(
File.open(
File.join(File.dirname(__FILE__), 'site.yml'),
File::RDONLY
).read
)
_conf.merge!(_site) if _site.is_a?(Hash)
end
# forcing config variables
_conf["vagrant_dir"] = "/vagrant"
config.vm.define _conf['hostname'] do |v|
end
config.vm.box = ENV['wp_box'] || _conf['wp_box']
config.vm.box_version = "= 20180107"
config.ssh.forward_agent = true
config.vm.box_check_update = true
config.vm.hostname = _conf['hostname']
config.vm.network :private_network, ip: _conf['ip']
config.vm.synced_folder _conf['synced_folder'],
_conf['document_root'], :create => "true", :mount_options => ['dmode=755', 'fmode=644'],
SharedFoldersEnableSymlinksCreate: false
if Vagrant.has_plugin?('vagrant-hostsupdater')
config.hostsupdater.aliases = _conf['hostname_aliases']
config.hostsupdater.remove_on_suspend = true
end
if Vagrant.has_plugin?('vagrant-vbguest')
config.vbguest.auto_update = false
end
if File.exists?(File.join(File.dirname(__FILE__), 'provision-pre.sh')) then
config.vm.provision :shell, :path => File.join( File.dirname(__FILE__), 'provision-pre.sh' )
end
config.vm.provider :virtualbox do |vb|
vb.linked_clone = _conf['linked_clone']
vb.name = _conf['hostname']
vb.memory = _conf['memory'].to_i
vb.cpus = _conf['cpus'].to_i
if 1 < _conf['cpus'].to_i
vb.customize ['modifyvm', :id, '--ioapic', 'on']
end
vb.customize ['modifyvm', :id, '--natdnsproxy1', 'on']
vb.customize ['modifyvm', :id, '--natdnshostresolver1', 'on']
vb.customize ['setextradata', :id, 'VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled', 0]
end
config.vm.provision "ansible_local" do |ansible|
ansible.compatibility_mode = "2.0"
ansible.extra_vars = {
vccw: _conf
}
ansible.playbook = "provision/playbook.yml"
end
if File.exists?(File.join(ENV["HOME"], '.vccw/playbook-post.yml'))
config.vm.provision "ansible" do |ansible|
ansible.compatibility_mode = "2.0"
ansible.extra_vars = {
vccw: _conf
}
ansible.playbook = File.join(ENV["HOME"], '.vccw/playbook-post.yml')
end
end
if File.exists?(File.join(ENV["HOME"], '.vccw/provision-post.sh'))
config.vm.provision :shell, :privileged => false, :path => File.join(ENV["HOME"], '.vccw/provision-post.sh')
end
if File.exists?(File.join(File.dirname(__FILE__), 'playbook-post.yml')) then
config.vm.provision "ansible_local" do |ansible|
ansible.compatibility_mode = "2.0"
ansible.extra_vars = {
vccw: _conf
}
ansible.playbook = "playbook-post.yml"
end
end
if File.exists?(File.join(File.dirname(__FILE__), 'provision-post.sh')) then
config.vm.provision :shell, :privileged => false, :path => File.join( File.dirname(__FILE__), 'provision-post.sh' )
end
if File.exists?(File.join(File.dirname(__FILE__), 'run-always.sh')) then
config.vm.provision :shell, :path => File.join( File.dirname(__FILE__), 'run-always.sh' ), run: 'always'
end
end