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
|
# File 'lib/vagrant-compose-yaml/command.rb', line 7
def execute
options = {
file: 'vagrant-compose.yml',
force: false,
output: 'Vagrantfile',
}
opts = OptionParser.new do |o|
o.banner = 'Usage: vagrant compose-yaml [options]'
o.separator ''
o.separator 'Options:'
o.separator ''
o.on('-f', '--file FILE', String, 'Specify an alternate compose file (default: vagrant-compose.yml)') do |file|
options[:file] = file
end
o.on('--force', 'Overwrite existing Vagrantfile') do |force|
options[:force] = force
end
o.on('--output FILE', String, "Specify an alternate Vagrantfile ('-' for stdout)") do |output|
options[:output] = output
end
end
argv = parse_options(opts)
return if !argv
save_path = nil
if options[:output] != '-'
save_path = Pathname.new(options[:output]).expand_path(@env.cwd)
save_path.delete if save_path.exist? && options[:force]
raise Vagrant::Errors::VagrantfileExistsError if save_path.exist?
end
template = 'templates/Vagrantfile'
template_path = ::VagrantPlugins::ComposeYaml.source_root.join(template)
compose_yaml_data= YAML.load_file(Pathname.new(options[:file]).expand_path(@env.cwd))
contents = Vagrant::Util::TemplateRenderer.render(template_path, compose_yaml_data)
if save_path
begin
save_path.open('w+') do |f|
f.write(contents)
end
rescue Errno::EACCES
raise Vagrant::Errors::VagrantfileWriteError
end
@env.ui.info(I18n.t('vagrant.commands.init.success'), prefix: false)
else
@env.ui.info(contents, prefix: false)
end
0
end
|