Sha256: a239da92f87b5bb780e1a1c2bfab117c2e6a8a8a35f246672ac6e5910b2e1334

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 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 -w '#{name}' || hostname -s | grep -w '#{name}'")
            basename = name.split(".", 2)[0]

            comm.sudo <<-EOH.gsub(/^ {14}/, '')
              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

6 entries across 6 versions & 2 rubygems

Version Path
vagrant-compose-yaml-0.1.3 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/darwin/cap/change_host_name.rb
vagrant-compose-yaml-0.1.2 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/darwin/cap/change_host_name.rb
vagrant-compose-yaml-0.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/darwin/cap/change_host_name.rb
vagrant-compose-yaml-0.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/vagrant-dbb756c7b6da/plugins/guests/darwin/cap/change_host_name.rb
vagrant-unbundled-1.8.4.2 plugins/guests/darwin/cap/change_host_name.rb
vagrant-unbundled-1.8.4.1 plugins/guests/darwin/cap/change_host_name.rb