19 lines
592 B
Ruby
19 lines
592 B
Ruby
module VagrantPlugins
|
|
module GuestArch
|
|
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("sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/rc.conf")
|
|
comm.sudo("hostname #{name}")
|
|
comm.sudo("sed -i 's@^\\(127[.]0[.]0[.]1[[:space:]]\\+\\)@\\1#{name} @' /etc/hosts")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|