Class: VolMgrPlatformSupport

Inherits:
Object
  • Object
show all
Defined in:
lib/VolumeManager/VolMgrPlatformSupport.rb

Instance Method Summary collapse

Constructor Details

#initialize(cfgFile, ost) ⇒ VolMgrPlatformSupport

Returns a new instance of VolMgrPlatformSupport.



2
3
4
5
6
7
8
9
10
# File 'lib/VolumeManager/VolMgrPlatformSupport.rb', line 2

def initialize(cfgFile, ost)
  $log.debug "Initializing VolMgrPlatformSupport" if $log
  @cfgFile = cfgFile
  @ost = ost

  require "VolumeManager/VolMgrPlatformSupportLinux"
  extend VolMgrPlatformSupportLinux
  init
end