Sha256: 7c0f37876769aaf30838669c1ad5bfbec6eefea0a8ae408b4253c28711d746e5
Contents?: true
Size: 518 Bytes
Versions: 9
Compression:
Stored size: 518 Bytes
Contents
module Katello module Concerns module RendererExtensions extend ActiveSupport::Concern included do alias_method_chain :kickstart_attributes, :katello end def kickstart_attributes_with_katello kickstart_attributes_without_katello if @host.content_view && @host.operatingsystem.is_a?(Redhat) && !@host.operatingsystem.kickstart_repo(@host).blank? @mediapath ||= @host.operatingsystem.mediumpath(@host) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems