Sha256: 60a542201e1282573b17b23f417b7f75ae908226d928c1727e7d7cc236167ae8
Contents?: true
Size: 927 Bytes
Versions: 2
Compression:
Stored size: 927 Bytes
Contents
require 'uri' module ForemanBootdisk class Renderer include ::Foreman::Renderer include Rails.application.routes.url_helpers def generic_template_render if (Gem::Version.new(SETTINGS[:version].notag) < Gem::Version.new('1.5')) && Setting[:safemode_render] raise(::Foreman::Exception.new(N_('Bootdisk is not supported with safemode rendering, please disable safemode_render under Adminster>Settings'))) end tmpl = ConfigTemplate.find_by_name(Setting[:bootdisk_generic_host_template]) || raise(::Foreman::Exception.new(N_('Unable to find template specified by %s setting'), 'bootdisk_generic_host_template')) @host = Struct.new(:token, :subnet).new(nil, nil) unattended_render(tmpl.template) end def bootdisk_chain_url(action = 'iPXE') u = URI.parse(foreman_url(action)) u.query = "#{u.query}&mac=" u.fragment = nil u.to_s end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
foreman_bootdisk-5.0.0 | app/services/foreman_bootdisk/renderer.rb |
foreman_bootdisk-4.0.2 | app/services/foreman_bootdisk/renderer.rb |