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
|
# File 'lib/vagrant-command-dns/action/host/create.rb', line 14
def call(env)
if env[:machine].state.id != :running
raise Errors::MachineState, state: 'running'
end
record_map = env[:record_map]
File.open('/etc/hosts', 'r') do |file|
file.each_line do |line|
env[:record_map].each do |hostname, ip|
precise_pattern = Regexp.new('^\s*' + ip + '\s+' + hostname)
loose_pattern = Regexp.new('^\s*[0-9]{1,3}[0-9]{1,3}[0-9]{1,3}[0-9]{1,3}\s+' + hostname)
if line.match(/#{precise_pattern}/)
record_map.delete(hostname)
env[:ui].info(I18n.t('vagrant_command_dns.command.host.create_exists_match', ip: ip, hostname: hostname))
elsif line.match(/#{loose_pattern}/)
env[:ui].info(I18n.t('vagrant_command_dns.command.host.create_exists_conflict'))
end
end
end
end
lines = []
record_map.each do |hostname, ip|
if env[:machine].config.dns.host_skip_aliases.include?(hostname)
env[:ui].info(I18n.t('vagrant_command_dns.command.host.skip_alias', hostname: hostname))
else
lines.push("#{ip} #{hostname}")
end
end
if lines.length > 0
content = lines.join("\n").strip
if system("sudo sh -c 'echo \"#{content}\" >> /etc/hosts'")
record_map.each do |hostname, ip|
env[:ui].info(I18n.t('vagrant_command_dns.command.host.create_success', ip: ip, hostname: hostname))
end
else
env[:ui].error(I18n.t('vagrant_command_dns.command.host.edit_error'))
end
end
@app.call(env)
end
|