Sha256: 711946b661075aaf1cc2ba610de5f75094ac1dc8b3cb731642b175356a633374
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
module VagrantPlugins module GuestDebian 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}/, '') # Ensure exit on command error set -e # Set the hostname echo '#{basename}' > /etc/hostname hostname -F /etc/hostname if command -v hostnamectl; then hostnamectl set-hostname '#{basename}' 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 } # Update mailname echo '#{name}' > /etc/mailname # 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 end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-unbundled-1.8.5.2 | plugins/guests/debian/cap/change_host_name.rb |
vagrant-unbundled-1.8.5.1 | plugins/guests/debian/cap/change_host_name.rb |