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

80 lines
2.9 KiB
Ruby
Raw Normal View History

require "log4r"
2013-04-04 06:18:12 +00:00
module VagrantPlugins
module GuestDebian
module Cap
class ChangeHostName
extend Vagrant::Util::GuestInspection::Linux
2013-04-04 06:18:12 +00:00
def self.change_host_name(machine, name)
@logger = Log4r::Logger.new("vagrant::guest::debian::changehostname")
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 '#{basename}' > /etc/hostname
# Prepend ourselves to /etc/hosts
grep -w '#{name}' /etc/hosts || {
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
}
# Update mailname
echo '#{name}' > /etc/mailname
EOH
if hostnamectl?(comm)
comm.sudo("hostnamectl set-hostname '#{basename}'")
else
comm.sudo <<-EOH.gsub(/^ {14}/, '')
hostname -F /etc/hostname
# Restart hostname services
if test -f /etc/init.d/hostname; then
/etc/init.d/hostname start || true
fi
if test -f /etc/init.d/hostname.sh; then
/etc/init.d/hostname.sh start || true
fi
EOH
end
init_restart_command = "/etc/init.d/networking restart"
ifdownup_restart_command = "ifdown --exclude=lo -a && ifup --exclude=lo -a"
systemctl_restart_command = "systemctl stop ifup@eth0.service && systemctl start ifup@eth0.service"
restart_command = ifdownup_restart_command
if systemd?(comm)
if systemd_networkd?(comm)
@logger.debug("Attempting to restart networking with systemd-networkd")
restart_command = "systemctl restart systemd-networkd.service"
elsif systemd_controlled?(comm, "NetworkManager.service")
@logger.debug("Attempting to restart networking with NetworkManager")
restart_command = "systemctl restart NetworkManager.service"
else
@logger.debug("Attempting to restart networking with ifup@.service")
restart_command = systemctl_restart_command
end
else
@logger.debug("Attempting to restart networking with ifdown/ifup net tools")
end
if !comm.test(restart_command, sudo: true)
@logger.debug("Attempting to restart networking with init networking service")
comm.sudo(init_restart_command)
end
2013-04-04 06:18:12 +00:00
end
end
2013-04-04 06:18:12 +00:00
end
end
end
end