Sha256: b112282f528ec70c367217f3c774d73de90e16aa66e647639c4ac854d61c6143
Contents?: true
Size: 822 Bytes
Versions: 2
Compression:
Stored size: 822 Bytes
Contents
module VagrantPlugins module GuestAtomic 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 -e # Set hostname hostnamectl set-hostname '#{basename}' # 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 } 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/atomic/cap/change_host_name.rb |
vagrant-unbundled-1.8.5.1 | plugins/guests/atomic/cap/change_host_name.rb |