Class: VagrantDNS::Command

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-dns/command.rb

Instance Method Summary collapse

Instance Method Details

#executeObject

Runs the vbguest installer on the VMs that are represented by this environment.



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
# File 'lib/vagrant-dns/command.rb', line 11

def execute
  options = {}
  opts = OptionParser.new do |opts|
    opts.banner = "Usage: vagrant dns [vm-name] [-i|--install] [-u|--uninstall] [--with-sudo] [--pruge] [-s|--start] [-S|--stop] [-r|--restart] [--status] [-l|--list] [-o|--ontop]"
    opts.separator ""

    opts.on("--install", "-i", "Install DNS config for machine domain") do
      options[:install] = true
      options[:build_config] = true
      options[:manage_installation] = true
    end

    opts.on("--uninstall", "-u", "Uninstall DNS config for machine domain") do
      options[:uninstall] = true
      options[:build_config] = false
      options[:manage_installation] = true
      options[:stop] = true
    end

    opts.on("--purge", "Uninstall DNS config and remove DNS configurations of all machines.") do
      options[:purge] = true
      options[:build_config] = false
      options[:manage_installation] = true
      options[:stop] = true
    end

    opts.on("--start", "-s", "Start the DNS service") do
      options[:start] = true
      options[:build_config] = true
    end

    opts.on("--stop", "-S", "Stop the DNS service") do
      options[:stop] = true
      options[:build_config] = false
    end

    opts.on("--restart", "-r", "Restart the DNS service") do
      options[:restart] = true
      options[:build_config] = true
    end

    opts.on("--status", "Show DNS service running status and PID.") do
      options[:status] = true
      options[:build_config] = false
    end

    opts.on("--list", "-l", "Show the current DNS service config. This works in conjunction with --start --stop --restart --status.") do
      options[:show_config] = true
      options[:build_config] = false
    end

    opts.on("--with-sudo", "In conjunction with `--install`, `--uninstall`, `--purge`: Run using `sudo` instead of `osascript`. Useful for automated scripts running as sudoer.") do
      options[:installer_opts] = { exec_style: :sudo }
    end

    opts.on("--ontop", "-o", "Start the DNS service on top. Debugging only, this blocks Vagrant!") do
      options[:ontop] = true
    end
  end

  argv = parse_options(opts)
  return if !argv

  vms = argv unless argv.empty?

  build_config(vms, options)        if options[:build_config]
  manage_service(vms, options)
  manage_installation(vms, options) if options[:manage_installation]
  show_config(vms, options)         if options[:show_config]
end