Skip to content
Snippets Groups Projects
Verified Commit ff67e09a authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Update rendering code to be 2.0

parent 595f5989
No related branches found
No related tags found
No related merge requests found
...@@ -6,25 +6,21 @@ module ForemanWds ...@@ -6,25 +6,21 @@ module ForemanWds
super super
end end
def load_template_vars
super unless params[:kind] == 'wds_localboot'
end
private private
def wds_render_csr def wds_render_csr
return render(:plain => 'Host not in build mode') unless @host and @host.build? return unless verify_found_host
return head(:method_not_allowed) unless allowed_to_install?
template = ProvisioningTemplate.find_by_name('csr_attributes.yaml') template = ProvisioningTemplate.find_by_name('csr_attributes.yaml')
return safe_render(template) if template
content = @host.render_template template: template return head(:not_found)
raise Foreman::Exception.new(N_("Template '%s' didn't render correctly"), template.name) unless content
render plain: content
end end
def wds_deploy_localboot def wds_deploy_localboot
return render(:plain => 'Host not in build mode') unless @host and @host.build? return unless verify_found_host
return head(:method_not_allowed) unless allowed_to_install?
iface = @host.provision_interface iface = @host.provision_interface
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment