Sha256: f5015738ddc142edaf6a0ff785553a6159745a2e8a5eb3a567bc00a6bcf60292

Contents?: true

Size: 1.18 KB

Versions: 2

Compression:

Stored size: 1.18 KB

Contents

module VagrantPlugins
  module GuestDarwin
    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
              scutil --set ComputerName '#{name}'
              scutil --set HostName '#{name}'

              # LocalHostName should not contain dots - it is used by Bonjour and
              # visible through file sharing services.
              scutil --set LocalHostName '#{basename}'

              hostname '#{name}'

              # Remove comments and blank lines from /etc/hosts
              sed -i'' -e 's/#.*$//' /etc/hosts
              sed -i'' -e '/^$/d' /etc/hosts

              # Prepend ourselves to /etc/hosts - sed on bsd is sad
              grep -w '#{name}' /etc/hosts || {
                echo -e '127.0.0.1\\t#{name}\\t#{basename}' | cat - /etc/hosts > /tmp/tmp-hosts
                mv /tmp/tmp-hosts /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/darwin/cap/change_host_name.rb
vagrant-unbundled-1.8.5.1 plugins/guests/darwin/cap/change_host_name.rb