Blame view

basic2/Vagrantfile 2.93 KB
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
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
  require 'yaml'
  require 'fileutils'
  
  required_plugins_installed = nil
  required_plugins = %w( vagrant-hostmanager vagrant-vbguest )
  required_plugins.each do |plugin|
    unless Vagrant.has_plugin? plugin
      system "vagrant plugin install #{plugin}"
      required_plugins_installed = true
    end
  end
  
  # IF plugin[s] was just installed - restart required
  if required_plugins_installed
    # Get CLI command[s] and call again
    system 'vagrant' + ARGV.to_s.gsub(/\[\"|\", \"|\"\]/, ' ')
    exit
  end
  
  domains = {
    app: 'yii2basic.test'
  }
  
  vagrantfile_dir_path = File.dirname(__FILE__)
  
  config = {
    local: vagrantfile_dir_path + '/vagrant/config/vagrant-local.yml',
    example: vagrantfile_dir_path + '/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]
  
  # check github token
  if options['github_token'].nil? || options['github_token'].to_s.length != 40
    puts "You must place REAL GitHub token into configuration:
  /yii2-app-basic/vagrant/config/vagrant-local.yml"
    exit
  end
  
  # vagrant configurate
  Vagrant.configure(2) do |config|
    # select the box
    config.vm.box = 'bento/ubuntu-18.04'
  
    # 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 'private_network', ip: options['ip']
  
    # sync: folder 'yii2-app-advanced' (host machine) -> folder '/app' (guest machine)
    config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
  
    # 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            = domains.values
  
    # quick fix for failed guest additions installations
    # config.vbguest.auto_update = false
  
    # provisioners
    config.vm.provision 'shell', path: './vagrant/provision/once-as-root.sh', args: [options['timezone'], options['ip']]
    config.vm.provision 'shell', path: './vagrant/provision/once-as-vagrant.sh', args: [options['github_token']], 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 = "App URL: http://#{domains[:app]}"
  end