Sha256: e98aff4da86a69050f8155f06e02e6ec544639b14af8fcdaf457ec43ee0e84b2

Contents?: true

Size: 489 Bytes

Versions: 10

Compression:

Stored size: 489 Bytes

Contents

require 'sys-uname'

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

    if Sys::Platform::OS == :windows
      require "VolumeManager/VolMgrPlatformSupportWin"
      extend VolMgrPlatformSupportWin
    else
      require "VolumeManager/VolMgrPlatformSupportLinux"
      extend VolMgrPlatformSupportLinux
    end
    init
  end # def initialize
end # class VolMgrPlatformSupport

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
manageiq-smartstate-0.2.2 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.2.1 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.2.0 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.6 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.5 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.4 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.3 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.2 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.1 lib/VolumeManager/VolMgrPlatformSupport.rb
manageiq-smartstate-0.1.0 lib/VolumeManager/VolMgrPlatformSupport.rb