Project

General

Profile

Download (2.24 KB) Statistics
| Branch: | Tag: | Revision:
<span id="virtual_machine">
<%= render('common/hypervisor', :item => @host) if @host.new_record? and !Hypervisor.first.nil? and authorized_for("Hypervisors::Guests", :create) %>
</span>
<% field_set_tag 'Network Settings' do -%>
<%= render 'common/domain_subnet', :item => @host %>
<%= f.label :ip, "IP", :class => "span-1" %>
<%= f.text_field :ip, :class => "span-3", :title => "IP Address for this host, if DHCP Smart proxy is enabled, this should be auto suggested to you" %>
<% unless @hypervisor -%>
<%= render 'mac' %>
<% end -%>
<% if @host.new_record? -%>
<%= f.label :build, nil, :class => "span-1", :title => "Enable this host for provisioning" %>
<%= f.check_box :build, :checked => true, :class => "span-1 last" %>
<% end -%>
<% end -%>

<% field_set_tag 'Provisioning Settings' do -%>
<div class="span-24 last">
<%= render "common/os_selection/initial", { :f => f, :item=> @host } %>
</div>

<div id="os-tab2" class="span-24 last">
<%= f.label :root_pass, "Root password", :class => "span-3" %>
<%= f.password_field :root_pass, :class => "span-3" %>
<%= f.label :model_id, "Hardware Model", :class => "span-4" %>
<%= f.collection_select :model_id, Model.all, :id, :to_label, { :include_blank => true }, {:class => "span-3"}%>
<% unless @host.new_record? -%>
<div class="push-2"> Last Install <%= date @host.installed_at %></div>
<% end -%>
</div>

<div id="os-tab3" class="span-24">

<table>
<tr>
<td> <%= link_to_function "Toggle custom disk layout", toggle_div("custom_disk") %> </td>
<td> <%= link_to_function "Provisioning Templates", "template_info('#templates_info','#{template_used_hosts_url}')", :title => "Click to refresh" %> </td>
</tr>
<tr>
<td class="span-12"> <div id="custom_disk" <%= display? %>>
<%= f.text_area :disk, :size => "50x6", :title => 'Use custom Disk layout' %>
<br>
<small>What ever text(or ERB template) you use in here, would be used as your OS disk layout options
If you want to use the partition table option, delete all of the text from this field</small>
</div></td>
<td class="span-12"> <div id="templates_info"> </div> </td>
</tr>
</table>

</div>
<% end -%>
(8-8/23)