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
|
# File 'lib/vagrant-local/command/webvnc_console.rb', line 9
def execute
options = {}
opts = OptionParser.new do |o|
o.banner = 'Usage: vagrant local console webvnc [options]'
o.on('--ip <host_ip>', 'Specify host IP to listen on') do |p|
options[:ip] = p
end
o.on('--port <port>', 'Specify port to listen on') do |p|
options[:port] = p
end
o.on('--detach <yes/no>', 'Run console server in background') do |p|
options[:detach] = p
end
o.on('--kill <yes/no>', 'Kill the previous background console session') do |p|
options[:kill] = p
end
end
argv = parse_options(opts)
return unless argv
unless argv.length <= 4
@env.ui.info(opts.help)
return
end
options[:port] = nil unless options[:port] =~ /\d/
with_target_vms(argv, provider: :local) do |machine|
driver = machine.provider.driver
detach = 'yes'
detach = 'no' unless options[:detach] == 'yes'
kill = 'yes'
kill = 'no' unless options[:kill] == 'yes'
exit = { detach: detach, kill: kill }
driver.console(@env.ui, 'webvnc', options[:ip], options[:port], exit)
end
end
|