Add solaris support for host-only networks and setting the hostname

This commit is contained in:
Dave Smith 2011-10-20 14:36:44 -06:00 committed by Mitchell Hashimoto
parent 245bcf436f
commit be078aedc4
1 changed files with 58 additions and 11 deletions

View File

@ -15,11 +15,13 @@ module Vagrant
attr_accessor :halt_check_interval attr_accessor :halt_check_interval
# This sets the command to use to execute items as a superuser. sudo is default # This sets the command to use to execute items as a superuser. sudo is default
attr_accessor :suexec_cmd attr_accessor :suexec_cmd
attr_accessor :device
def initialize def initialize
@halt_timeout = 30 @halt_timeout = 30
@halt_check_interval = 1 @halt_check_interval = 1
@suexec_cmd = 'sudo' @suexec_cmd = 'sudo'
@device = "e1000g"
end end
end end
@ -28,6 +30,34 @@ module Vagrant
error_namespace("vagrant.systems.solaris") error_namespace("vagrant.systems.solaris")
end end
def prepare_host_only_network(net_options=nil)
end
def enable_host_only_network(net_options)
device = "#{vm.env.config.solaris.device}#{net_options[:adapter]}"
su_cmd = vm.env.config.solaris.suexec_cmd
ifconfig_cmd = "#{su_cmd} /sbin/ifconfig #{device}"
vm.ssh.execute do |ssh|
ssh.exec!("#{ifconfig_cmd} plumb")
ssh.exec!("#{ifconfig_cmd} inet #{net_options[:ip]} netmask #{net_options[:netmask]}")
ssh.exec!("#{ifconfig_cmd} up")
ssh.exec!("#{su_cmd} sh -c \"echo '#{net_options[:ip]}' > /etc/hostname.#{device}\"")
end
end
def change_host_name(name)
device = "#{vm.env.config.solaris.device}0"
su_cmd = vm.env.config.solaris.suexec_cmd
vm.ssh.execute do |ssh|
# Only do this if the hostname is not already set
if !ssh.test?("#{su_cmd} hostname | grep '#{name}'")
ssh.exec!("#{su_cmd} sh -c \"echo '#{name}' > /etc/hostname.#{device}\"")
ssh.exec!("#{su_cmd} sudo uname -S #{name}")
end
end
end
# There should be an exception raised if the line # There should be an exception raised if the line
# #
# vagrant::::profiles=Primary Administrator # vagrant::::profiles=Primary Administrator
@ -36,19 +66,36 @@ module Vagrant
def halt def halt
vm.env.ui.info I18n.t("vagrant.systems.solaris.attempting_halt") vm.env.ui.info I18n.t("vagrant.systems.solaris.attempting_halt")
vm.ssh.execute do |ssh| vm.ssh.execute do |ssh|
ssh.exec!("#{vm.env.config.solaris.suexec_cmd} /usr/sbin/poweroff")
end
# Wait until the VM's state is actually powered off. If this doesn't # Wait until the VM's state is actually powered off. If this doesn't
# occur within a reasonable amount of time (15 seconds by default), # occur within a reasonable amount of time (15 seconds by default),
# then simply return and allow Vagrant to kill the machine. # then simply return and allow Vagrant to kill the machine.
count = 0 count = 0
last_error = nil
while vm.vm.state != :powered_off while vm.vm.state != :powered_off
count += 1 begin
ssh.exec!("#{vm.env.config.solaris.suexec_cmd} /usr/sbin/poweroff")
return if count >= vm.env.config.solaris.halt_timeout rescue IOError => e
sleep vm.env.config.solaris.halt_check_interval # Save the last error; if it's not shutdown in a reasonable amount
# of attempts we will re-raise the error so it's not hidden for
# all time
last_error = e
end end
count += 1
if count >= vm.env.config.solaris.halt_timeout
# Check for last error and re-raise it
if last_error != nil
raise last_error
else
# Otherwise, just return
return
end
end
# Still opportunities remaining; sleep and loop
sleep vm.env.config.solaris.halt_check_interval
end # while
end # do
end end
def mount_shared_folder(ssh, name, guestpath, owner, group) def mount_shared_folder(ssh, name, guestpath, owner, group)