Class: RHN::KickstartProfile

Inherits:
Operation show all
Defined in:
lib/satops/rhsat.rb

Instance Method Summary collapse

Methods inherited from Operation

#action, #action_list, #define, #trace_info, #trace_warn

Constructor Details

#initialize(sat) ⇒ KickstartProfile

Returns a new instance of KickstartProfile.



345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
# File 'lib/satops/rhsat.rb', line 345

def initialize(sat)
  super(sat)
  define 'kickstart.profile.addIpRange'
  define 'kickstart.profile.addScript'
  define 'kickstart.profile.getAdvancedOptions'
  define 'kickstart.profile.getChildChannels'
  define 'kickstart.profile.getCustomOptions'
  define 'kickstart.profile.getKickstartTree'
  define 'kickstart.profile.getVariables'
  define 'kickstart.profile.listScripts'
  define 'kickstart.profile.listIpRanges', :list
  define 'kickstart.profile.removeScript'
  define 'kickstart.profile.setAdvancedOptions'
  define 'kickstart.profile.setChildChannels'
  define 'kickstart.profile.setCustomOptions'
  define 'kickstart.profile.setKickstartTree'
  define 'kickstart.profile.setLogging'
  define 'kickstart.profile.setVariables'
end