Class: Beaker::Aixer

Inherits:
Hypervisor show all
Defined in:
lib/beaker/hypervisor/aixer.rb

Instance Method Summary collapse

Methods inherited from Hypervisor

#configure, create

Constructor Details

#initialize(aix_hosts, options) ⇒ Aixer

Returns a new instance of Aixer.



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/beaker/hypervisor/aixer.rb', line 4

def initialize(aix_hosts, options)
  @options = options
  @logger = options[:logger]
  @aix_hosts = aix_hosts
  #aix machines are reverted to known state, not a snapshot
  @fog_file = nil
  if File.exists?( @options[:dot_fog] )
    @fog_file = YAML.load_file( @options[:dot_fog] )
  end
  raise "Cant load #{@options[:dot_fog]} config" unless @fog_file

end

Instance Method Details

#cleanupObject



43
44
45
# File 'lib/beaker/hypervisor/aixer.rb', line 43

def cleanup
  @logger.notify "No cleanup for aix boxes"
end

#provisionObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/beaker/hypervisor/aixer.rb', line 17

def provision
  # Running the rake task on rpm-builder
  hypername = @fog_file[:default][:aix_hypervisor_server]
  hyperopts = @options.dup
  hyperopts['HOSTS'] = {
      hypername => { 'platform' => 'el-6-x86_64' }
  }

  @logger.notify "Connecting to hypervisor at #{hypername}"
  hypervisor = Beaker::Host.create( hypername, hyperopts )
  hypervisor[:user] = @fog_file[:default][:aix_hypervisor_username] || hypervisor[:user]
  hypervisor[:ssh][:keys] = [@fog_file[:default][:aix_hypervisor_keyfile]] || hypervisor[:ssh][:keys]

  @aix_hosts.each do |host|
    vm_name = host['vmname'] || host.name

    @logger.notify "Reverting #{vm_name} to aix clean state"
    start = Time.now
    # Restore AIX image, ID'd by the hostname
    hypervisor.exec(Command.new("cd pe-aix && rake restore:#{host.name}"))
    time = Time.now - start
    @logger.notify "Spent %.2f seconds reverting" % time
  end
  hypervisor.close
end