2013-04-04 06:18:12 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestDebian
|
|
|
|
module Cap
|
|
|
|
class ChangeHostName
|
|
|
|
def self.change_host_name(machine, name)
|
2016-06-05 01:31:41 +00:00
|
|
|
comm = machine.communicate
|
|
|
|
|
2016-06-23 02:29:46 +00:00
|
|
|
if !comm.test("hostname -f | grep '^#{name}$'", sudo: false)
|
2016-06-05 01:31:41 +00:00
|
|
|
basename = name.split(".", 2)[0]
|
|
|
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
|
|
|
# Set the hostname
|
2016-06-23 01:32:33 +00:00
|
|
|
echo '#{basename}' > /etc/hostname
|
2016-06-05 01:31:41 +00:00
|
|
|
hostname -F /etc/hostname
|
|
|
|
|
2016-06-25 19:51:58 +00:00
|
|
|
if command -v hostnamectl; then
|
|
|
|
hostnamectl set-hostname '#{basename}'
|
|
|
|
fi
|
|
|
|
|
2016-06-05 01:31:41 +00:00
|
|
|
# Prepend ourselves to /etc/hosts
|
|
|
|
grep -w '#{name}' /etc/hosts || {
|
2018-01-26 11:02:17 +00:00
|
|
|
if grep -w '^127\\.0\\.1\\.1' /etc/hosts ; then
|
|
|
|
sed -i'' 's/^127\\.0\\.1\\.1\\s.*$/127.0.1.1\\t#{name}\\t#{basename}/' /etc/hosts
|
|
|
|
else
|
|
|
|
sed -i'' '1i 127.0.1.1\\t#{name}\\t#{basename}' /etc/hosts
|
|
|
|
fi
|
2016-06-05 01:31:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Update mailname
|
|
|
|
echo '#{name}' > /etc/mailname
|
|
|
|
|
2016-06-25 19:51:58 +00:00
|
|
|
# Restart hostname services
|
|
|
|
if test -f /etc/init.d/hostname; then
|
|
|
|
/etc/init.d/hostname start || true
|
2016-06-05 01:31:41 +00:00
|
|
|
fi
|
|
|
|
|
2016-06-25 19:51:58 +00:00
|
|
|
if test -f /etc/init.d/hostname.sh; then
|
|
|
|
/etc/init.d/hostname.sh start || true
|
2016-06-05 01:31:41 +00:00
|
|
|
fi
|
2018-02-01 15:45:58 +00:00
|
|
|
if test -x /sbin/dhclient ; then
|
|
|
|
/sbin/dhclient -r
|
|
|
|
/sbin/dhclient -nw
|
|
|
|
fi
|
2016-06-05 01:31:41 +00:00
|
|
|
EOH
|
2013-04-04 06:18:12 +00:00
|
|
|
end
|
2014-05-05 01:32:33 +00:00
|
|
|
end
|
2013-04-04 06:18:12 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|