Sha256: cb0f85b661c2fa7fec40d1dded1c4c73b806a484f59a1b7d4af791f091ca8394

Contents?: true

Size: 986 Bytes

Versions: 37

Compression:

Stored size: 986 Bytes

Contents

module VagrantPlugins
  module GuestGentoo
    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 the hostname

              # Use hostnamectl on systemd
              if [[ `systemctl` =~ -\.mount ]]; then
                systemctl set-hostname '#{name}'
              else
                hostname '#{basename}'
                echo "hostname=#{basename}" > /etc/conf.d/hostname
              fi

              # Prepend ourselves to /etc/hosts
              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

37 entries across 33 versions & 4 rubygems

Version Path
vagrant-unbundled-2.2.9.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.8.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.7.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.6.2 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.6.1 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.6.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.5.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.4.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.3.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.2.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.0.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.1.4.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.1.2.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.1.1.0 plugins/guests/gentoo/cap/change_host_name.rb