% if (installation) {%>
<% if (installation.get('tree_url')) {%>
Tree URL
<%- installation.get('tree_url') %>
<% } %>
<% if (installation.get('initrd')) {%>
Initrd Image URL
<%- installation.get('initrd') %>
<% } %>
<% if (installation.get('kernel')) {%>
Kernel Image URL
<%- installation.get('kernel') %>
<% } %>
OS Major
<%- installation.get('osmajor') %>
OS Minor
<%- installation.get('osminor') ? installation.get('osminor') : "0" %>
<% if (installation.get('variant')) {%>
Variant
<%-installation.get('variant')%>
<% } %>
Architecture
<%- installation.get('arch') %>
<% } %>
<% 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)) { %>
Name |
URL |
<% _.each(repos, function (repo) { %>
<%- repo.name %> |
<%- repo.url %> |
<% })%>
<% } else { %>
(none)
<% } %>
Custom Partitions
<% if (!_.isEmpty(partitions)) { %>
Name |
Type |
Size |
File System |
<% _.each(partitions, function (partition) { %>
<%- 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)
<% } %>