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

19 lines
589 B
Ruby
Raw Normal View History

2013-04-04 19:25:10 +00:00
module VagrantPlugins
module GuestSuse
module Cap
class ChangeHostName
def self.change_host_name(machine, name)
machine.communicate.tap do |comm|
# Only do this if the hostname is not already set
if !comm.test("sudo hostname | grep '#{name}'")
comm.sudo("echo #{name} > /etc/HOSTNAME")
2013-04-04 19:25:10 +00:00
comm.sudo("hostname #{name}")
comm.sudo("sed -i 's@^\\(127[.]0[.]0[.]1[[:space:]]\\+\\)@\\1#{name} #{name.split('.')[0]} @' /etc/hosts")
end
end
end
end
end
end
end