Sha256: f8f3aa4c08eccbe5ba846406189c8f2572024ff9097a5d161cb2643164a3237b

Contents?: true

Size: 658 Bytes

Versions: 10

Compression:

Stored size: 658 Bytes

Contents

require_relative '../../linux/cap/change_host_name'

module VagrantPlugins
  module GuestGentoo
    module Cap
      class ChangeHostName
        extend VagrantPlugins::GuestLinux::Cap::ChangeHostName

        def self.change_name_command(name)
          basename = name.split(".", 2)[0]
          return <<-EOH.gsub(/^ {14}/, '')
            # Use hostnamectl on systemd
            if [[ `systemctl` =~ -\.mount ]]; then
              systemctl set-hostname '#{name}'
            else
              hostname '#{basename}'
              echo "hostname=#{basename}" > /etc/conf.d/hostname
            fi
          EOH
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/guests/gentoo/cap/change_host_name.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.3.3.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.3.2.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.19.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.18.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.16.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.14.0 plugins/guests/gentoo/cap/change_host_name.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/guests/gentoo/cap/change_host_name.rb
vagrant-unbundled-2.2.10.0 plugins/guests/gentoo/cap/change_host_name.rb