Sha256: 1a10a89c847492ac48bc86e4532e65dca1f7adf7aa9816213399638c41fb7ef1

Contents?: true

Size: 545 Bytes

Versions: 75

Compression:

Stored size: 545 Bytes

Contents

module VagrantPlugins
  module GuestSolaris
    module Cap
      class ChangeHostName
        def self.change_host_name(machine, name)
          su_cmd = machine.config.solaris.suexec_cmd

          # Only do this if the hostname is not already set
          if !machine.communicate.test("#{su_cmd} hostname | grep '#{name}'")
            machine.communicate.execute("#{su_cmd} sh -c \"echo '#{name}' > /etc/nodename\"")
            machine.communicate.execute("#{su_cmd} uname -S #{name}")
          end
        end
      end
    end
  end
end

Version data entries

75 entries across 68 versions & 10 rubygems

Version Path
vagrant-unbundled-1.8.1.2 plugins/guests/solaris/cap/change_host_name.rb
vagrant-unbundled-1.8.1.1 plugins/guests/solaris/cap/change_host_name.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/guests/solaris/cap/change_host_name.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/guests/solaris/cap/change_host_name.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/guests/solaris/cap/change_host_name.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/guests/solaris/cap/change_host_name.rb
vagrant-tiktalik-0.0.3 vendor/bundle/ruby/2.0.0/bundler/gems/vagrant-1e28f1ac31e7/plugins/guests/solaris/cap/change_host_name.rb
tnargav-1.3.6 plugins/guests/solaris/cap/change_host_name.rb
tnargav-1.3.3 plugins/guests/solaris/cap/change_host_name.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/guests/solaris/cap/change_host_name.rb
tnargav-1.2.3 plugins/guests/solaris/cap/change_host_name.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/plugins/guests/solaris/cap/change_host_name.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/solaris/cap/change_host_name.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/plugins/guests/solaris/cap/change_host_name.rb
tnargav-1.2.2 plugins/guests/solaris/cap/change_host_name.rb