<% if (typeof hostrecipe != 'undefined' && hostrecipe) { %>

Guest Name

<% if (!_.isEmpty(guestname)) { %> <%- guestname %> <% } else { %> (none) <% } %>

Guest Arguments for virt-install

<% if (!_.isEmpty(guestargs)) { %> <%- guestargs %> <% } else { %> (none) <% } %>
<% } %>

Kernel Options

<% if (!_.isEmpty(kernel_options)) { %> <%- kernel_options %> <% } else { %> (none) <% } %>

Post-Install Kernel Options

<% if (kernel_options_post) { %> <%- kernel_options_post %> <% } else { %> (none) <% } %>

Kickstart Metadata

<% if (ks_meta) { %> <%- ks_meta %> <% } else { %> (none) <% } %>

Additional Packages

<% if (!_.isEmpty(packages)) { %>
<% _.each(packages, function (package) { %><%- package %>
<% })%>
<% } else { %>
(none)
<% } %>

Additional Repositories

<% if (!_.isEmpty(repos)) { %> <% _.each(repos, function (repo) { %> <% })%>
Name URL
<%- repo.name %> <%- repo.url %>
<% } else { %>
(none)
<% } %>

Custom Partitions

<% if (!_.isEmpty(partitions)) { %> <% _.each(partitions, function (partition) { %> <% })%>
Name Type Size File System
<%- partition.name %> <%- partition.type %> <%- partition.size %> GiB <% if (!_.isEmpty(partition.fs)) { %> <%- partition.fs %> <% } else { %> (default) <% } %>
<% } else { %>
(none)
<% } %>

Kickstart Appends

<% if (!_.isEmpty(ks_appends)) { %> <% _.each(ks_appends, function (ks_append) { %>
<%- ks_append.trim() %>
<% })%> <% } else { %>
(none)
<% } %>