26 lines
705 B
Ruby
26 lines
705 B
Ruby
module VagrantPlugins
|
|
module GuestPhoton
|
|
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]
|
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
|
# Set the hostname
|
|
echo '#{name}' > /etc/hostname
|
|
hostname '#{name}'
|
|
|
|
# Prepend ourselves to /etc/hosts
|
|
grep -w '#{name}' /etc/hosts || {
|
|
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
|
}
|
|
EOH
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|