class RHN::KickstartProfile

Public Class Methods

new(sat) click to toggle source
Calls superclass method RHN::Operation::new
# 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