2013-04-04 18:49:26 +00:00
|
|
|
module VagrantPlugins
|
2013-04-04 19:09:40 +00:00
|
|
|
module GuestRedHat
|
2013-04-04 18:49:26 +00:00
|
|
|
module Cap
|
|
|
|
class ChangeHostName
|
|
|
|
def self.change_host_name(machine, name)
|
2016-06-05 23:08:44 +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 23:08:44 +00:00
|
|
|
basename = name.split('.', 2)[0]
|
|
|
|
comm.sudo <<-EOH.gsub(/^ {14}/, '')
|
|
|
|
# Update sysconfig
|
|
|
|
sed -i 's/\\(HOSTNAME=\\).*/\\1#{name}/' /etc/sysconfig/network
|
|
|
|
|
|
|
|
# Update DNS
|
|
|
|
sed -i 's/\\(DHCP_HOSTNAME=\\).*/\\1\"#{basename}\"/' /etc/sysconfig/network-scripts/ifcfg-*
|
|
|
|
|
|
|
|
# Set the hostname - use hostnamectl if available
|
|
|
|
echo '#{name}' > /etc/hostname
|
|
|
|
if command -v hostnamectl; then
|
2016-06-23 02:49:33 +00:00
|
|
|
hostnamectl set-hostname --static '#{name}'
|
|
|
|
hostnamectl set-hostname --transient '#{name}'
|
2016-06-05 23:08:44 +00:00
|
|
|
else
|
2016-06-23 02:49:33 +00:00
|
|
|
hostname -F /etc/hostname
|
2016-06-05 23:08:44 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove comments and blank lines from /etc/hosts
|
|
|
|
sed -i'' -e 's/#.*$//' -e '/^$/d' /etc/hosts
|
|
|
|
|
|
|
|
# Prepend ourselves to /etc/hosts
|
|
|
|
grep -w '#{name}' /etc/hosts || {
|
|
|
|
sed -i'' '1i 127.0.0.1\\t#{name}\\t#{basename}' /etc/hosts
|
|
|
|
}
|
|
|
|
|
2016-11-29 13:40:48 +00:00
|
|
|
# Restart network (through NetworkManager if running)
|
|
|
|
if service NetworkManager status 2>&1 | grep -q running; then
|
|
|
|
service NetworkManager restart
|
|
|
|
else
|
|
|
|
service network restart
|
|
|
|
fi
|
2016-06-05 23:08:44 +00:00
|
|
|
EOH
|
2013-04-04 18:49:26 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|