Class: Beaker::Noop

Inherits:
Hypervisor
  • Object
show all
Defined in:
lib/beaker/hypervisor/noop.rb

Instance Method Summary collapse

Constructor Details

#initialize(hosts, options) ⇒ Noop

Returns a new instance of Noop.



3
4
5
6
7
# File 'lib/beaker/hypervisor/noop.rb', line 3

def initialize(hosts, options)
  super

  @logger = options[:logger]
end

Instance Method Details

#cleanupObject



25
26
27
# File 'lib/beaker/hypervisor/noop.rb', line 25

def cleanup
  # noop
end

#configureObject



13
14
15
# File 'lib/beaker/hypervisor/noop.rb', line 13

def configure
  # noop
end

#provisionObject



21
22
23
# File 'lib/beaker/hypervisor/noop.rb', line 21

def provision
  # noop
end

#proxy_package_managerObject



17
18
19
# File 'lib/beaker/hypervisor/noop.rb', line 17

def proxy_package_manager
  # noop
end

#validateObject



9
10
11
# File 'lib/beaker/hypervisor/noop.rb', line 9

def validate
  # noop
end