-
Notifications
You must be signed in to change notification settings - Fork 847
/
Vagrantfile
989 lines (856 loc) · 43.7 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
# frozen_string_literal: true
# -*- mode: ruby -*-
# vi: set ft=ruby ts=2 sw=2 et:
VAGRANTFILE_API_VERSION = "2"
Vagrant.require_version '>= 2.2.4'
require 'yaml'
require 'fileutils'
require 'pathname'
require 'socket'
def sudo_warnings
red = "\033[38;5;9m" # 124m"
creset = "\033[0m"
puts "#{red}┌-──────────────────────────────────────────────────────────────────────────────┐#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ ⚠ DANGER DO NOT USE SUDO ⚠ │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ ! ▄▀▀▀▄▄▄▄▄▄▄▀▀▀▄ ! You should never use sudo or root with vagrant. │#{creset}"
puts "#{red}│ !█▒▒░░░░░░░░░▒▒█ It causes lots of problems :( │#{creset}"
puts "#{red}│ █░░█░▄▄░░█░░█ ! │#{creset}"
puts "#{red}│ █░░█░░█░▄▄█ ! We're really sorry but you may need to do painful │#{creset}"
puts "#{red}│ ! ▀▄░█░░██░░█ cleanup commands to fix this. │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ If vagrant does not work for you without sudo, open a GitHub issue instead │#{creset}"
puts "#{red}│ In the future, this warning will halt provisioning to prevent new users │#{creset}"
puts "#{red}│ making this mistake. │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ ⚠ DANGER SUDO DETECTED! │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ In the future the VVV team will be making it harder to use VVV with sudo. │#{creset}"
puts "#{red}│ We will require a config option so that users can do data recovery, and │#{creset}"
puts "#{red}│ disable sites and the dashboard. │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}│ DO NOT USE SUDO, use ctrl+c/cmd+c and cancel this command ASAP!!! │#{creset}"
puts "#{red}│ │#{creset}"
puts "#{red}└───────────────────────────────────────────────────────────────────────────────┘#{creset}"
# exit
end
def vvv_is_docker_present()
if `docker version`
return true
end
return false
end
def vvv_is_parallels_present()
return Vagrant.has_plugin?("vagrant-parallels")
end
vagrant_dir = __dir__
show_logo = false
branch_c = "\033[38;5;6m" # 111m"
red = "\033[38;5;9m" # 124m"
green = "\033[1;38;5;2m" # 22m"
blue = "\033[38;5;4m" # 33m"
purple = "\033[38;5;5m" # 129m"
docs = "\033[0m"
yellow = "\033[38;5;3m" # 136m"
yellow_underlined = "\033[4;38;5;3m" # 136m"
url = yellow_underlined
creset = "\033[0m"
version = '?'
File.open("#{vagrant_dir}/version", 'r') do |f|
version = f.read
version = version.gsub("\n", '')
end
unless Vagrant::Util::Platform.windows?
if Process.uid == 0
sudo_warnings
end
end
unless Vagrant::Util::Platform.windows?
if Process.uid == 0
puts " "
puts "#{red} ⚠ DANGER VAGRANT IS RUNNING AS ROOT/SUDO, DO NOT USE SUDO ⚠#{creset}"
puts " "
end
end
# whitelist when we show the logo, else it'll show on global Vagrant commands
show_logo = true if %w[up resume status provision reload].include? ARGV[0]
show_logo = false if ENV['VVV_SKIP_LOGO']
# Show the initial splash screen
if show_logo
git_or_zip = 'zip-no-vcs'
branch = ''
commit = ''
if File.directory?("#{vagrant_dir}/.git")
git_or_zip = 'git::'
branch = `git --git-dir="#{vagrant_dir}/.git" --work-tree="#{vagrant_dir}" rev-parse --abbrev-ref HEAD`
branch = branch.chomp("\n"); # remove trailing newline so it doesn't break the ascii art
commit = `git --git-dir="#{vagrant_dir}/.git" --work-tree="#{vagrant_dir}" rev-parse --short HEAD`
commit = '(' + commit.chomp("\n") + ')'; # remove trailing newline so it doesn't break the ascii art
end
splashfirst = <<~HEREDOC
\033[1;38;5;196m#{red}__ #{green}__ #{blue}__ __
#{red}\\ V#{green}\\ V#{blue}\\ V / #{purple}v#{version} #{purple}Ruby:#{RUBY_VERSION}, Path:"#{vagrant_dir}"
#{red} \\_/#{green}\\_/#{blue}\\_/ #{creset}#{branch_c}#{git_or_zip}#{branch}#{commit}#{creset}
HEREDOC
puts splashfirst
end
# Load the config file before the second section of the splash screen
# Perform file migrations from older versions
vvv_config_file = File.join(vagrant_dir, 'config/config.yml')
unless File.file?(vvv_config_file)
old_vvv_config = File.join(vagrant_dir, 'vvv-custom.yml')
if File.file?(old_vvv_config)
puts "#{yellow}Migrating #{red}vvv-custom.yml#{yellow} to #{green}config/config.yml#{yellow}\nIMPORTANT NOTE: Make all modifications to #{green}config/config.yml#{yellow}.#{creset}\n\n"
FileUtils.mv(old_vvv_config, vvv_config_file)
else
puts "#{yellow}Copying #{red}config/default-config.yml#{yellow} to #{green}config/config.yml#{yellow}\nIMPORTANT NOTE: Make all modifications to #{green}config/config.yml#{yellow} in future so that they are not lost when VVV updates.#{creset}\n\n"
FileUtils.cp(File.join(vagrant_dir, 'config/default-config.yml'), vvv_config_file)
end
end
old_db_backup_dir = File.join(vagrant_dir, 'database/backups/')
new_db_backup_dir = File.join(vagrant_dir, 'database/sql/backups/')
if (File.directory?(old_db_backup_dir) == true) && (File.directory?(new_db_backup_dir) == false)
puts 'Moving db backup directory into database/sql/backups'
FileUtils.mv(old_db_backup_dir, new_db_backup_dir)
end
begin
vvv_config = YAML.load_file(vvv_config_file)
unless vvv_config['sites'].is_a? Hash
vvv_config['sites'] = {}
puts "#{red}config/config.yml is missing a sites section.#{creset}\n\n"
end
rescue StandardError => e
puts "#{red}config/config.yml isn't a valid YAML file.#{creset}\n\n"
puts "#{red}VVV cannot be executed!#{creset}\n\n"
warn e.message
exit
end
vvv_config['hosts'] = [] unless vvv_config['hosts'].is_a? Hash
vvv_config['hosts'] += ['vvv.test']
vvv_config['sites'].each do |site, args|
if args.is_a? String
repo = args
args = {}
args['repo'] = repo
end
args = {} unless args.is_a? Hash
defaults = {}
defaults['repo'] = false
defaults['vm_dir'] = "/srv/www/#{site}"
defaults['local_dir'] = File.join(vagrant_dir, 'www', site)
defaults['branch'] = 'master'
defaults['skip_provisioning'] = false
defaults['allow_customfile'] = false
defaults['nginx_upstream'] = 'php'
defaults['hosts'] = []
vvv_config['sites'][site] = defaults.merge(args)
unless vvv_config['sites'][site]['skip_provisioning']
site_host_paths = Dir.glob(Array.new(4) { |i| vvv_config['sites'][site]['local_dir'] + '/*' * (i + 1) + '/vvv-hosts' })
vvv_config['sites'][site]['hosts'] += site_host_paths.map do |path|
lines = File.readlines(path).map(&:chomp)
lines.grep(/\A[^#]/)
end.flatten
if vvv_config['sites'][site]['hosts'].is_a? Array
vvv_config['hosts'] += vvv_config['sites'][site]['hosts']
else
vvv_config['hosts'] += ["#{site}.test"]
end
end
vvv_config['sites'][site].delete('hosts')
end
if vvv_config['extension-sources'].is_a? Hash
vvv_config['extension-sources'].each do |name, args|
next unless args.is_a? String
repo = args
args = {}
args['repo'] = repo
args['branch'] = 'master'
vvv_config['extension-sources'][name] = args
end
else
vvv_config['extension-sources'] = {}
end
vvv_config['dashboard'] = {} unless vvv_config['dashboard']
dashboard_defaults = {}
dashboard_defaults['repo'] = 'https://github.com/Varying-Vagrant-Vagrants/dashboard.git'
dashboard_defaults['branch'] = 'master'
vvv_config['dashboard'] = dashboard_defaults.merge(vvv_config['dashboard'])
unless vvv_config['extension-sources'].key?('core')
vvv_config['extension-sources']['core'] = {}
vvv_config['extension-sources']['core']['repo'] = 'https://github.com/Varying-Vagrant-Vagrants/vvv-utilities.git'
vvv_config['extension-sources']['core']['branch'] = 'master'
end
vvv_config['utilities'] = {} unless vvv_config['utilities'].is_a? Hash
vvv_config['utility-sources'] = {} unless vvv_config['utility-sources'].is_a? Hash
vvv_config['extension-sources'] = {} unless vvv_config['extension-sources'].is_a? Hash
vvv_config['extensions'] = {} unless vvv_config['extensions'].is_a? Hash
vvv_config['vm_config'] = {} unless vvv_config['vm_config'].is_a? Hash
vvv_config['general'] = {} unless vvv_config['general'].is_a? Hash
defaults = {}
defaults['memory'] = 2048
defaults['cores'] = 2
defaults['provider'] = 'virtualbox'
# if Arm default to docker then parallels
if Etc.uname[:version].include? 'ARM64'
if vvv_is_parallels_present()
defaults['provider'] = 'parallels'
else
defaults['provider'] = 'docker'
end
end
# This should rarely be overridden, so it's not included in the config/default-config.yml file.
defaults['private_network_ip'] = '192.168.56.4'
vvv_config['vm_config'] = defaults.merge(vvv_config['vm_config'])
vvv_config['hosts'] = vvv_config['hosts'].uniq
vvv_config['vagrant-plugins'] = {} unless vvv_config['vagrant-plugins']
# Early mapping of the hosts to be added.
vvv_config['utilities'].each do |name, extensions|
extensions = {} unless extensions.is_a? Array
extensions.each do |extension|
if extension == 'tideways'
vvv_config['hosts'] += ['tideways.vvv.test']
vvv_config['hosts'] += ['xhgui.vvv.test']
end
end
end
vvv_config['extensions'].each do |name, extensions|
extensions = {} unless extensions.is_a? Array
extensions.each do |extension|
if extension == 'tideways'
vvv_config['hosts'] += ['tideways.vvv.test']
vvv_config['hosts'] += ['xhgui.vvv.test']
end
end
end
# Create a global variable to use in functions and classes
$vvv_config = vvv_config
# Show the second splash screen section
if show_logo
platform = [ Vagrant::Util::Platform.platform]
if Vagrant::Util::Platform.windows?
platform << 'windows '
platform << 'wsl ' if Vagrant::Util::Platform.wsl?
platform << 'msys ' if Vagrant::Util::Platform.msys?
platform << 'cygwin ' if Vagrant::Util::Platform.cygwin?
if Vagrant::Util::Platform.windows_hyperv_enabled?
platform << 'HyperV-Enabled '
end
platform << 'HyperV-Admin ' if Vagrant::Util::Platform.windows_hyperv_admin?
if Vagrant::Util::Platform.windows_admin?
platform << 'HasWinAdminPriv '
else
platform << 'missingWinAdminPriv ' unless Vagrant::Util::Platform.windows_admin?
end
else
platform << 'shell:' + ENV['SHELL'] if ENV['SHELL']
platform << 'systemd ' if Vagrant::Util::Platform.systemd?
end
platform << 'vagrant-hostmanager' if Vagrant.has_plugin?('vagrant-hostmanager')
platform << 'vagrant-hostsupdater' if Vagrant.has_plugin?('vagrant-hostsupdater')
platform << 'vagrant-goodhosts' if Vagrant.has_plugin?('vagrant-goodhosts')
platform << 'vagrant-vbguest' if Vagrant.has_plugin?('vagrant-vbguest')
platform << 'vagrant-disksize' if Vagrant.has_plugin?('vagrant-disksize')
platform << 'CaseSensitiveFS' if Vagrant::Util::Platform.fs_case_sensitive?
unless Vagrant::Util::Platform.terminal_supports_colors?
platform << 'monochrome-terminal'
end
if defined? vvv_config['vm_config']['wordcamp_contributor_day_box']
if vvv_config['vm_config']['wordcamp_contributor_day_box'] == true
platform << 'contributor_day_box'
end
end
if defined? vvv_config['vm_config']['box']
unless vvv_config['vm_config']['box'].nil?
puts "Custom Box: Box overridden via config/config.yml , this won't take effect until a destroy + reprovision happens"
platform << 'box_override:' + vvv_config['vm_config']['box']
end
end
if defined? vvv_config['general']['db_share_type']
if vvv_config['general']['db_share_type'] != true
platform << 'shared_db_folder_disabled'
else
platform << 'shared_db_folder_enabled'
end
else
platform << 'shared_db_folder_default'
end
provider_version = '??'
provider_meta = nil
case vvv_config['vm_config']['provider']
when 'virtualbox'
provider_meta = VagrantPlugins::ProviderVirtualBox::Driver::Meta.new()
provider_version = provider_meta.version
when 'parallels'
provider_version = '?'
if defined? VagrantPlugins::Parallels
provider_meta = VagrantPlugins::Parallels::Driver::Meta.new()
provider_version = provider_meta.version
end
when 'vmware'
provider_version = '??'
when 'hyperv'
provider_version = 'n/a'
when 'docker'
provider_version = `docker -v`.gsub("Docker version ", "")
else
provider_version = '??'
end
splashsecond = <<~HEREDOC
#{yellow}Platform: #{yellow}#{platform.join(' ')}
#{green}Vagrant: #{green}v#{Vagrant::VERSION}, #{blue}#{vvv_config['vm_config']['provider']}: #{blue}v#{provider_version}
#{docs}Docs: #{url}https://varyingvagrantvagrants.org/
#{docs}Contribute: #{url}https://github.com/varying-vagrant-vagrants/vvv
#{docs}Dashboard: #{url}http://vvv.test#{creset}
HEREDOC
puts splashsecond
end
if defined? vvv_config['vm_config']['provider']
# Override or set the vagrant provider.
ENV['VAGRANT_DEFAULT_PROVIDER'] = vvv_config['vm_config']['provider']
end
ENV['LC_ALL'] = 'en_US.UTF-8'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# VirtualBox
config.vm.provider :virtualbox do |v|
unless Vagrant::Util::Platform.windows?
if Process.uid == 0
machine_id_file=Pathname.new(".vagrant/machines/default/virtualbox/id")
unless machine_id_file.exist?()
puts "#{red} ⚠ DANGER VAGRANT IS RUNNING AS ROOT/SUDO, DO NOT USE SUDO ⚠#{creset}"
puts " ! VVV has detected that the VM has not been created yet, and is running as root/sudo."
puts " ! Do not use sudo with VVV, do not run VVV as a root user. Aborting."
abort( "Aborting Vagrant command to prevent a critical mistake, do not use sudo/root with VVV." )
end
end
end
v.customize ['modifyvm', :id, '--uartmode1', 'file', File.join(vagrant_dir, 'log/ubuntu-cloudimg-console.log')]
v.customize ['modifyvm', :id, '--memory', vvv_config['vm_config']['memory']]
v.customize ['modifyvm', :id, '--cpus', vvv_config['vm_config']['cores']]
v.customize ['modifyvm', :id, '--natdnshostresolver1', 'on']
v.customize ['modifyvm', :id, '--natdnsproxy1', 'on']
# see https://github.com/hashicorp/vagrant/issues/7648
v.customize ['modifyvm', :id, '--cableconnected1', 'on']
v.customize ['modifyvm', :id, '--rtcuseutc', 'on']
v.customize ['modifyvm', :id, '--audio', 'none']
v.customize ['modifyvm', :id, '--paravirtprovider', 'kvm']
# https://github.com/laravel/homestead/pull/63
v.customize ['modifyvm', :id, '--ostype', 'Ubuntu_64']
v.customize ['setextradata', :id, 'VBoxInternal2/SharedFoldersEnableSymlinksCreate//srv/www', '1']
v.customize ['setextradata', :id, 'VBoxInternal2/SharedFoldersEnableSymlinksCreate//srv/config', '1']
# Set the box name in VirtualBox to match the working directory.
v.name = File.basename(vagrant_dir) + '_' + (Digest::SHA256.hexdigest vagrant_dir)[0..10]
end
# Configuration options for the Parallels provider.
config.vm.provider :parallels do |v|
v.customize ['set', :id, '--longer-battery-life', 'off']
v.memory = vvv_config['vm_config']['memory']
v.cpus = vvv_config['vm_config']['cores']
end
# Configuration options for the VMware Desktop provider.
config.vm.provider :vmware_desktop do |v|
v.vmx['memsize'] = vvv_config['vm_config']['memory']
v.vmx['numvcpus'] = vvv_config['vm_config']['cores']
end
# Configuration options for Hyper-V provider.
config.vm.provider :hyperv do |v|
v.memory = vvv_config['vm_config']['memory']
v.cpus = vvv_config['vm_config']['cores']
v.linked_clone = true
end
# Auto Download Vagrant plugins, supported from Vagrant 2.2.0
unless Vagrant.has_plugin?('vagrant-hostsupdater') && Vagrant.has_plugin?('vagrant-goodhosts') && Vagrant.has_plugin?('vagrant-hostsmanager')
if File.file?(File.join(vagrant_dir, 'vagrant-goodhosts.gem'))
system('vagrant plugin install ' + File.join(vagrant_dir, 'vagrant-goodhosts.gem'))
File.delete(File.join(vagrant_dir, 'vagrant-goodhosts.gem'))
puts "#{yellow}VVV needed to install the vagrant-goodhosts plugin which is now installed. Please run the requested command again.#{creset}"
exit
else
config.vagrant.plugins = ['vagrant-goodhosts']
end
end
# The vbguest plugin has issues for some users, so we're going to disable it for now
config.vbguest.auto_update = false if Vagrant.has_plugin?('vagrant-vbguest')
# SSH Agent Forwarding
#
# Enable agent forwarding on vagrant ssh commands. This allows you to use ssh keys
# on your host machine inside the guest. See the manual for `ssh-add`.
config.ssh.forward_agent = true
# SSH Key Insertion
#
# This is disabled, we had several contributors who ran into issues.
# See: https://github.com/Varying-Vagrant-Vagrants/VVV/issues/1551
config.ssh.insert_key = false
config.vm.box_check_update = false
# The Parallels Provider uses a different naming scheme.
config.vm.provider :parallels do |_v, override|
override.vm.box = 'bento/ubuntu-20.04'
# Vagrant currently runs under Rosetta on M1 devices. As a result,
# this seems to be the most reliable way to detect whether or not we're
# running under ARM64.
if Etc.uname[:version].include? 'ARM64'
override.vm.box = 'bento/ubuntu-20.04-arm64'
end
end
# The VMware Desktop Provider uses a different naming scheme.
config.vm.provider :vmware_desktop do |v, override|
override.vm.box = 'bento/ubuntu-20.04'
v.gui = false
end
# Hyper-V uses a different base box.
config.vm.provider :hyperv do |_v, override|
override.vm.box = 'bento/ubuntu-20.04'
end
# Docker use image.
config.vm.provider :docker do |d, override|
d.image = 'pentatonicfunk/vagrant-ubuntu-base-images:20.04'
d.has_ssh = true
d.ports = [ "80:80" ] # HTTP
d.ports += [ "443:443" ] # HTTPS
d.ports += [ "3306:3306" ] # MySQL
d.ports += [ "8025:8025" ] # Mailhog
## Fix goodhosts aliases format for docker
override.goodhosts.aliases = { '127.0.0.1' => vvv_config['hosts'], '::1' => vvv_config['hosts'] }
end
# Virtualbox.
config.vm.provider :virtualbox do |_v, override|
# Default Ubuntu Box
#
# This box is provided by Bento boxes via vagrantcloud.com and is a nicely sized
# box containing the Ubuntu 20.04 Focal 64 bit release. Once this box is downloaded
# to your host computer, it is cached for future use under the specified box name.
override.vm.box = 'bento/ubuntu-20.04'
# If we're at a contributor day, switch the base box to the prebuilt one
if defined? vvv_config['vm_config']['wordcamp_contributor_day_box']
if vvv_config['vm_config']['wordcamp_contributor_day_box'] == true
override.vm.box = 'vvv/contribute'
end
end
end
if defined? vvv_config['vm_config']['box']
unless vvv_config['vm_config']['box'].nil?
config.vm.box = vvv_config['vm_config']['box']
end
end
config.vm.hostname = 'vvv'
# Specify disk size
#
# If the Vagrant plugin disksize (https://github.com/sprotheroe/vagrant-disksize) is
# installed, the following will automatically configure your local machine's disk size
# to be the specified size. This plugin only works on VirtualBox.
#
# Warning: This plugin only resizes up, not down, so don't set this to less than 10GB,
# and if you need to downsize, be sure to destroy and reprovision.
#
if !vvv_config['vagrant-plugins']['disksize'].nil? && defined?(Vagrant::Disksize)
config.vm.provider :virtualbox do |_v, override|
override.disksize.size = vvv_config['vagrant-plugins']['disksize']
end
if Etc.uname[:version].include? 'ARM64'
puts "WARNING: Vagrant disksize requires VirtualBox and is incompatible with Arm devices, uninstall immediatley"
end
end
# Private Network (default)
#
# A private network is created by default. This is the IP address through which your
# host machine will communicate to the guest. In this default configuration, the virtual
# machine will have an IP address of 192.168.56.4 and a virtual network adapter will be
# created on your host machine with the IP of 192.168.50.1 as a gateway.
#
# Access to the guest machine is only available to your local host. To provide access to
# other devices, a public network should be configured or port forwarding enabled.
#
# Note: If your existing network is using the 192.168.56.x subnet, this default IP address
# should be changed. If more than one VM is running through VirtualBox, including other
# Vagrant machines, different subnets should be used for each.
#
config.vm.network :private_network, id: 'vvv_primary', ip: vvv_config['vm_config']['private_network_ip']
config.vm.provider :hyperv do |_v, override|
override.vm.network :private_network, id: 'vvv_primary', ip: nil
end
# Public Network (disabled)
#
# Using a public network rather than the default private network configuration will allow
# access to the guest machine from other devices on the network. By default, enabling this
# line will cause the guest machine to use DHCP to determine its IP address. You will also
# be prompted to choose a network interface to bridge with during `vagrant up`.
#
# Please see VVV and Vagrant documentation for additional details.
#
# config.vm.network :public_network
# Port Forwarding (disabled)
#
# This network configuration works alongside any other network configuration in Vagrantfile
# and forwards any requests to port 8080 on the local host machine to port 80 in the guest.
#
# Port forwarding is a first step to allowing access to outside networks, though additional
# configuration will likely be necessary on our host machine or router so that outside
# requests will be forwarded from 80 -> 8080 -> 80.
#
# Please see VVV and Vagrant documentation for additional details.
#
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Drive mapping
#
# The following config.vm.synced_folder settings will map directories in your Vagrant
# virtual machine to directories on your local machine. Once these are mapped, any
# changes made to the files in these directories will affect both the local and virtual
# machine versions. Think of it as two different ways to access the same file. When the
# virtual machine is destroyed with `vagrant destroy`, your files will remain in your local
# environment.
# Disable the default synced folder to avoid overlapping mounts
config.vm.synced_folder '.', '/vagrant', disabled: true
config.vm.provision 'file', source: "#{vagrant_dir}/version", destination: '/home/vagrant/version'
# /srv/database/
#
# If a database directory exists in the same directory as your Vagrantfile,
# a mapped directory inside the VM will be created that contains these files.
# This directory is used to maintain default database scripts as well as backed
# up MariaDB/MySQL dumps (SQL files) that are to be imported automatically on vagrant up
config.vm.synced_folder 'database/sql/', '/srv/database'
use_db_share = false
if defined? vvv_config['general']['db_share_type']
use_db_share = vvv_config['general']['db_share_type'] == true
end
if use_db_share == true
# Map the MySQL Data folders on to mounted folders so it isn't stored inside the VM
config.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 9001, group: 9001, mount_options: ['dmode=775', 'fmode=664']
# The Parallels Provider does not understand "dmode"/"fmode" in the "mount_options" as
# those are specific to Virtualbox. The folder is therefore overridden with one that
# uses corresponding Parallels mount options.
config.vm.provider :parallels do |_v, override|
override.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 9001, group: 9001, mount_options: [ 'share' ]
end
# Neither does the HyperV provider
config.vm.provider :hyperv do |_v, override|
override.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 9001, group: 9001, mount_options: ['dir_mode=0775', 'file_mode=0664']
end
end
# /srv/config/
#
# If a server-conf directory exists in the same directory as your Vagrantfile,
# a mapped directory inside the VM will be created that contains these files.
# This directory is currently used to maintain various config files for php and
# nginx as well as any pre-existing database files.
config.vm.synced_folder 'config/', '/srv/config'
# /srv/config/
#
# Map the provision folder so that extensions and provisioners can access helper scripts
config.vm.synced_folder 'provision/', '/srv/provision'
# /srv/certificates
#
# This is a location for the TLS certificates to be accessible inside the VM
config.vm.synced_folder 'certificates/', '/srv/certificates', create: true
# /var/log/
#
# If a log directory exists in the same directory as your Vagrantfile, a mapped
# directory inside the VM will be created for some generated log files.
config.vm.synced_folder 'log/memcached', '/var/log/memcached', owner: 'root', create: true, group: 'root', mount_options: ['dmode=777', 'fmode=666']
config.vm.synced_folder 'log/nginx', '/var/log/nginx', owner: 'root', create: true, group: 'root', mount_options: ['dmode=777', 'fmode=666']
config.vm.synced_folder 'log/php', '/var/log/php', create: true, owner: 'root', group: 'root', mount_options: ['dmode=777', 'fmode=666']
config.vm.synced_folder 'log/provisioners', '/var/log/provisioners', create: true, owner: 'root', group: 'root', mount_options: ['dmode=777', 'fmode=666']
# /srv/www/
#
# If a www directory exists in the same directory as your Vagrantfile, a mapped directory
# inside the VM will be created that acts as the default location for nginx sites. Put all
# of your project files here that you want to access through the web server
config.vm.synced_folder 'www/', '/srv/www', owner: 'vagrant', group: 'www-data', mount_options: ['dmode=775', 'fmode=774']
vvv_config['sites'].each do |site, args|
next if args['skip_provisioning']
if args['local_dir'] != File.join(vagrant_dir, 'www', site)
config.vm.synced_folder args['local_dir'], args['vm_dir'], owner: 'vagrant', group: 'www-data', mount_options: ['dmode=775', 'fmode=774']
end
end
# The Parallels Provider does not understand "dmode"/"fmode" in the "mount_options" as
# those are specific to Virtualbox. The folder is therefore overridden with one that
# uses corresponding Parallels mount options.
config.vm.provider :parallels do |_v, override|
override.vm.synced_folder 'www/', '/srv/www', owner: 'vagrant', group: 'www-data', mount_options: [ 'share' ]
override.vm.synced_folder 'log/memcached', '/var/log/memcached', owner: 'root', create: true, group: 'root', mount_options: [ 'share' ]
override.vm.synced_folder 'log/nginx', '/var/log/nginx', owner: 'root', create: true, group: 'root', mount_options: [ 'share' ]
override.vm.synced_folder 'log/php', '/var/log/php', create: true, owner: 'root', group: 'root', mount_options: [ 'share' ]
override.vm.synced_folder 'log/provisioners', '/var/log/provisioners', create: true, owner: 'root', group: 'root', mount_options: [ 'share' ]
if use_db_share == true
# Map the MySQL Data folders on to mounted folders so it isn't stored inside the VM
override.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 112, group: 115, mount_options: [ 'share' ]
end
vvv_config['sites'].each do |site, args|
next if args['skip_provisioning']
if args['local_dir'] != File.join(vagrant_dir, 'www', site)
override.vm.synced_folder args['local_dir'], args['vm_dir'], owner: 'vagrant', group: 'www-data', mount_options: [ 'share' ]
end
end
end
# The Hyper-V Provider does not understand "dmode"/"fmode" in the "mount_options" as
# those are specific to Virtualbox. Furthermore, the normal shared folders need to be
# replaced with SMB shares. Here we switch all the shared folders to us SMB and then
# override the www folder with options that make it Hyper-V compatible.
config.vm.provider :hyperv do |v, override|
v.vmname = File.basename(vagrant_dir) + '_' + (Digest::SHA256.hexdigest vagrant_dir)[0..10]
override.vm.synced_folder 'www/', '/srv/www', owner: 'vagrant', group: 'www-data', mount_options: ['dir_mode=0775', 'file_mode=0774']
if use_db_share == true
# Map the MySQL Data folders on to mounted folders so it isn't stored inside the VM
override.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 112, group: 115, mount_options: ['dir_mode=0775', 'file_mode=0664']
end
override.vm.synced_folder 'log/memcached', '/var/log/memcached', owner: 'root', create: true, group: 'root', mount_options: ['dir_mode=0777', 'file_mode=0666']
override.vm.synced_folder 'log/nginx', '/var/log/nginx', owner: 'root', create: true, group: 'root', mount_options: ['dir_mode=0777', 'file_mode=0666']
override.vm.synced_folder 'log/php', '/var/log/php', create: true, owner: 'root', group: 'root', mount_options: ['dir_mode=0777', 'file_mode=0666']
override.vm.synced_folder 'log/provisioners', '/var/log/provisioners', create: true, owner: 'root', group: 'root', mount_options: ['dir_mode=0777', 'file_mode=0666']
vvv_config['sites'].each do |site, args|
next if args['skip_provisioning']
if args['local_dir'] != File.join(vagrant_dir, 'www', site)
override.vm.synced_folder args['local_dir'], args['vm_dir'], owner: 'vagrant', group: 'www-data', mount_options: ['dir_mode=0775', 'file_mode=0774']
end
end
end
# The VMware Provider does not understand "dmode"/"fmode" in the "mount_options" as
# those are specific to Virtualbox. The folder is therefore overridden with one that
# uses corresponding VMware mount options.
config.vm.provider :vmware_desktop do |_v, override|
override.vm.synced_folder 'www/', '/srv/www', owner: 'vagrant', group: 'www-data', mount_options: ['umask=002']
override.vm.synced_folder 'log/memcached', '/var/log/memcached', owner: 'root', create: true, group: 'root', mount_options: ['umask=000']
override.vm.synced_folder 'log/nginx', '/var/log/nginx', owner: 'root', create: true, group: 'root', mount_options: ['umask=000']
override.vm.synced_folder 'log/php', '/var/log/php', create: true, owner: 'root', group: 'root', mount_options: ['umask=000']
override.vm.synced_folder 'log/provisioners', '/var/log/provisioners', create: true, owner: 'root', group: 'root', mount_options: ['umask=000']
if use_db_share == true
# Map the MySQL Data folders on to mounted folders so it isn't stored inside the VM
override.vm.synced_folder 'database/data/', '/var/lib/mysql', create: true, owner: 112, group: 115, mount_options: ['umask=000']
end
vvv_config['sites'].each do |site, args|
next if args['skip_provisioning']
if args['local_dir'] != File.join(vagrant_dir, 'www', site)
override.vm.synced_folder args['local_dir'], args['vm_dir'], owner: 'vagrant', group: 'www-data', mount_options: ['umask=002']
end
end
end
# Customfile - POSSIBLY UNSTABLE
#
# Use this to insert your own additional Vagrant config lines. Helpful
# for mapping additional drives. If a file 'Customfile' exists in the same directory
# as this Vagrantfile, it will be evaluated as ruby inline as it loads.
#
# Note that if you find yourself using a Customfile for anything crazy or specifying
# different provisioning, then you may want to consider a new Vagrantfile entirely.
if File.exist?(File.join(vagrant_dir, 'Customfile'))
puts " ⚠ ! Running additional Vagrant code in Customfile located at #{File.join(vagrant_dir, 'Customfile')}\n"
puts " ⚠ ! Official support is not provided for this feature, it is assumed you are proficient with vagrant\n\n"
eval(IO.read(File.join(vagrant_dir, 'Customfile')), binding)
puts " ⚠ ! Finished running Customfile, resuming normal vagrantfile execution\n\n"
end
vvv_config['sites'].each do |site, args|
next unless args['allow_customfile']
paths = Dir[File.join(args['local_dir'], '**', 'Customfile')]
paths.each do |file|
puts " ⚠ ! Running additional site customfile at #{file}\n"
puts " ⚠ ! Official support is not provided for this feature.\n\n"
eval(IO.read(file), binding)
puts " ⚠ ! Finished running Customfile, resuming normal vagrantfile execution\n\n"
end
end
# Provisioning
#
# Process one or more provisioning scripts depending on the existence of custom files.
unless Vagrant::Util::Platform.windows?
if Process.uid == 0
# the VM should know if vagrant was ran by a root user or using sudo
config.vm.provision "flag-root-vagrant-command", type: 'shell', keep_color: true, inline: "mkdir -p /vagrant && touch /vagrant/provisioned_as_root"
end
end
long_provision_bear = <<~HTML
#{blue}#{creset}
#{blue} ▄▀▀▀▄▄▄▄▄▄▄▀▀▀▄ ▄ ▄ #{green}A full provision will take a bit.#{creset}
#{blue} █▒▒░░░░░░░░░▒▒█ █ █ #{green}Sit back, relax, and have some tea.#{creset}
#{blue} █░░█░░░░░█░░█ ▀ ▀ #{creset}
#{blue} ▄▄ █░░░▀█▀░░░█ █▀▀▀▀▀▀█ #{green}If you didn't want to provision you can#{creset}
#{blue} █░░█ ▀▄░░░░░░░▄▀▄▀▀█ █ #{green}turn VVV on with 'vagrant up'.#{creset}
#{blue}───────────────────────────────────────────────────────────────────────#{creset}
HTML
# Changed the message here because it's going to show the first time you do vagrant up, which might be confusing
config.vm.provision "pre-provision-script", type: 'shell', keep_color: true, inline: "echo \"#{long_provision_bear}\""
# provison-pre.sh acts as a pre-hook to our default provisioning script. Anything that
# should run before the shell commands laid out in provision.sh (or your provision-custom.sh
# file) should go in this script. If it does not exist, no extra provisioning will run.
if File.exist?(File.join(vagrant_dir, 'provision', 'provision-pre.sh'))
config.vm.provision 'pre', type: 'shell', keep_color: true, path: File.join('provision', 'provision-pre.sh'), env: { "VVV_LOG" => "pre" }
end
# provision.sh or provision-custom.sh
#
# By default, Vagrantfile is set to use the provision.sh bash script located in the
# provision directory. If it is detected that a provision-custom.sh script has been
# created, that is run as a replacement. This is an opportunity to replace the entirety
# of the provisioning provided by default.
if File.exist?(File.join(vagrant_dir, 'provision', 'provision-custom.sh'))
config.vm.provision 'custom', type: 'shell', keep_color: true, path: File.join('provision', 'provision-custom.sh'), env: { "VVV_LOG" => "main-custom" }
else
config.vm.provision 'default', type: 'shell', keep_color: true, path: File.join('provision', 'provision.sh'), env: { "VVV_LOG" => "main" }
end
config.vm.provision 'tools', type: 'shell', keep_color: true, path: File.join('provision', 'provision-tools.sh'), env: { "VVV_LOG" => "tools" }
# Provision the dashboard that appears when you visit vvv.test
config.vm.provision 'dashboard',
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-dashboard.sh'),
args: [
vvv_config['dashboard']['repo'],
vvv_config['dashboard']['branch']
],
env: { "VVV_LOG" => "dashboard" }
vvv_config['utility-sources'].each do |name, args|
config.vm.provision "extension-source-#{name}",
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-extension-source.sh'),
args: [
name,
args['repo'].to_s,
args['branch']
],
env: { "VVV_LOG" => "extension-source-#{name}" }
end
vvv_config['extension-sources'].each do |name, args|
config.vm.provision "extension-source-#{name}",
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-extension-source.sh'),
args: [
name,
args['repo'].to_s,
args['branch']
],
env: { "VVV_LOG" => "extension-source-#{name}" }
end
vvv_config['utilities'].each do |name, extensions|
extensions = {} unless extensions.is_a? Array
extensions.each do |extension|
config.vm.provision "extension-#{name}-#{extension}",
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-extension.sh'),
args: [
name,
extension
],
env: { "VVV_LOG" => "extension-#{name}-#{extension}" }
end
end
vvv_config['extensions'].each do |name, extensions|
extensions = {} unless extensions.is_a? Array
extensions.each do |extension|
config.vm.provision "extension-#{name}-#{extension}",
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-extension.sh'),
args: [
name,
extension
],
env: { "VVV_LOG" => "extension-#{name}-#{extension}" }
end
end
vvv_config['sites'].each do |site, args|
next if args['skip_provisioning']
config.vm.provision "site-#{site}",
type: 'shell',
keep_color: true,
path: File.join('provision', 'provision-site.sh'),
args: [
site,
args['repo'].to_s,
args['branch'],
args['vm_dir'],
args['skip_provisioning'].to_s,
args['nginx_upstream']
],
env: { "VVV_LOG" => "site-#{site}" }
end
# provision-post.sh acts as a post-hook to the default provisioning. Anything that should
# run after the shell commands laid out in provision.sh or provision-custom.sh should be
# put into this file. This provides a good opportunity to install additional packages
# without having to replace the entire default provisioning script.
if File.exist?(File.join(vagrant_dir, 'provision', 'provision-post.sh'))
config.vm.provision 'post', type: 'shell', keep_color: true, path: File.join('provision', 'provision-post.sh'), env: { "VVV_LOG" => "post" }
end
config.vm.provision "post-provision-script", type: 'shell', keep_color: true, path: File.join( 'config/homebin', 'vagrant_provision' ), env: { "VVV_LOG" => "post-provision-script" }
# Local Machine Hosts
#
# If the Vagrant plugin goodhosts (https://github.com/goodhosts/vagrant/) is
# installed, the following will automatically configure your local machine's hosts file to
# be aware of the domains specified below. Watch the provisioning script as you may need to
# enter a password for Vagrant to access your hosts file.
#
# By default, we'll include the domains set up by VVV through the vvv-hosts file
# located in the www/ directory and in config/config.yml.
#
if config.vagrant.plugins.include? 'vagrant-goodhosts'
config.goodhosts.aliases = vvv_config['hosts']
config.goodhosts.remove_on_suspend = true
# goodhosts already disables clean by default, but lets enforce this at both ends
config.goodhosts.disable_clean = true
elsif config.vagrant.plugins.include? 'vagrant-hostsmanager'
config.hostmanager.aliases = vvv_config['hosts']
config.hostmanager.enabled = true
config.hostmanager.manage_host = true
config.hostmanager.manage_guest = true
config.hostmanager.ignore_private_ip = false
config.hostmanager.include_offline = true
elsif config.vagrant.plugins.include? 'vagrant-hostsupdater'
# Pass the found host names to the hostsupdater plugin so it can perform magic.
config.hostsupdater.aliases = vvv_config['hosts']
config.hostsupdater.remove_on_suspend = true
elsif %w[up halt resume suspend status provision reload].include? ARGV[0]
puts ""
puts " X ! There is no hosts file vagrant plugin installed!"
puts " X You need the vagrant-goodhosts plugin (or HostManager/ HostsUpdater ) for domains to work in the browser"
puts " X Run 'vagrant plugin install --local' to fix this."
puts ""
end
# Vagrant Triggers
#
# We run various scripts on Vagrant state changes like `vagrant up`, `vagrant halt`,
# `vagrant suspend`, and `vagrant destroy`
#
# These scripts are run on the host machine, so we use `vagrant ssh` to tunnel back
# into the VM and execute things. By default, each of these scripts calls db_backup
# to create backups of all current databases. This can be overridden with custom
# scripting. See the individual files in config/homebin/ for details.
unless Vagrant::Util::Platform.windows?
if Process.uid == 0
config.trigger.after :all do |trigger|
trigger.name = 'Do not use sudo'
trigger.ruby do |env,machine|
sudo_warnings
end
end
end
end
config.trigger.after :up do |trigger|
trigger.name = 'VVV Post-Up'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_up' }
trigger.on_error = :continue
end
config.trigger.before :reload do |trigger|
trigger.name = 'VVV Pre-Reload'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_halt' }
trigger.on_error = :continue
end
config.trigger.after :reload do |trigger|
trigger.name = 'VVV Post-Reload'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_up' }
trigger.on_error = :continue
end
config.trigger.before :halt do |trigger|
trigger.name = 'VVV Pre-Halt'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_halt' }
trigger.on_error = :continue
end
config.trigger.before :suspend do |trigger|
trigger.name = 'VVV Pre-Suspend'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_suspend' }
trigger.on_error = :continue
end
config.trigger.before :destroy do |trigger|
trigger.name = 'VVV Pre-Destroy'
trigger.run_remote = { inline: '/srv/config/homebin/vagrant_destroy' }
trigger.on_error = :continue
end
end