vagrant/plugins/guests/arch/cap/change_host_name.rb

28 lines
817 B
Ruby
Raw Normal View History

2013-04-04 18:39:58 +00:00
module VagrantPlugins
module GuestArch
module Cap
class ChangeHostName
def self.change_host_name(machine, name)
comm = machine.communicate
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
basename = name.split(".", 2)[0]
2016-06-23 01:31:36 +00:00
comm.sudo <<-EOH.gsub(/^ {14}/, "")
# Remove comments and blank lines from /etc/hosts
sed -i'' -e 's/#.*$//' -e '/^$/d' /etc/hosts
# Set hostname
2016-06-23 01:31:36 +00:00
hostnamectl set-hostname '#{basename}'
2016-06-23 01:31:36 +00:00
# Prepend ourselves to /etc/hosts
test $? -eq 0 && (grep -w '#{name}' /etc/hosts || {
2016-06-23 01:31:36 +00:00
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
})
2016-06-23 01:31:36 +00:00
EOH
2013-04-04 18:39:58 +00:00
end
end
end
end
end
end