-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
64 lines (49 loc) · 2.2 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
require 'yaml'
require 'fileutils'
config = {
local: './vagrant/config/vagrant-local.yml',
example: './vagrant/config/vagrant-local.example.yml'
}
# Copy config from example if local config not exists
FileUtils.cp config[:example], config[:local] unless File.exist?(config[:local])
# Read config
options = YAML.load_file config[:local]
Vagrant.configure(2) do |config|
# Select the box
config.vm.box = 'debian/bullseye64'
# should we ask about box updates?
config.vm.box_check_update = options['box_check_update']
config.vm.provider 'virtualbox' do |vb|
# Machine cpus count
vb.cpus = options['cpus']
# Machine memory size
vb.memory = options['memory']
# Machine name (for VirtualBox UI)
vb.name = options['machine_name']
end
# Machine name (for vagrant console)
config.vm.define options['machine_name']
# Machine name (for guest machine console)
config.vm.hostname = options['machine_name']
# Network settings
config.vm.network options['network'], ip: options['ip']
config.vbguest.auto_update = false
config.vbguest.installer_options = { allow_kernel_upgrade: true }
# Sync: folder 'ticketing-system-template' (host machine) -> folder '/var/www/html/ticketing-system-template' (guest machine)
config.vm.synced_folder '.', '/var/www/html/ticketing-system-template', owner: 'www-data', group: 'www-data'
# Disable folder '/vagrant' (guest machine)
config.vm.synced_folder '.', '/vagrant', disabled: true
# Hosts settings (host machine)
config.vm.provision :hostmanager
config.hostmanager.enabled = true
config.hostmanager.manage_host = true
config.hostmanager.ignore_private_ip = false
config.hostmanager.include_offline = true
config.hostmanager.aliases = options['domains'].values
# Provisioners
config.vm.provision 'shell', path: './vagrant/provision/once-as-root.sh', args: [options['timezone'], options['domains']['frontend']]
config.vm.provision 'shell', path: './vagrant/provision/once-as-vagrant.sh', privileged: false
config.vm.provision 'shell', path: './vagrant/provision/always-as-root.sh', run: 'always'
# Post-install message (vagrant console)
config.vm.post_up_message = "Website URL: http://#{options['domains']['frontend']}"
end