<div dir="ltr">Hi,<div><br></div><div>You could possibly use the kickstart metadata (--ksmeta) field the extra fields you are looking to add. Check out <a href="https://fedorahosted.org/cobbler/wiki/KickstartTemplating">https://fedorahosted.org/cobbler/wiki/KickstartTemplating</a> for more details but basically you can put in some space separated key=value pairs that then can be accessed and placed in-line through the Cheetah templates with the $getVar() function.</div>
<div><br></div><div style>Regards,</div><div style><br></div><div style>Andrew</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Mar 6, 2013 at 8:29 AM, Sarakaitis, Eric <span dir="ltr">&lt;<a href="mailto:Eric.Sarakaitis@cbts.cinbell.com" target="_blank">Eric.Sarakaitis@cbts.cinbell.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Got it, excellent!<br>
<br>
Here what I&#39;m testing now:<br>
<div class="im"><br>
$SNIPPET(&#39;network_config_esxi&#39;)<br>
accepteula<br>
install --firstdisk --overwritevmfs<br>
rootpw vmware123<br>
reboot<br>
%pre --interpreter=busybox<br>
</div>$SNIPPET(&#39;kickstart_start&#39;)<br>
%firstboot --interpreter=busybox<br>
$SNIPPET(&#39;esxi_51_configure_nested&#39;)<br>
$SNIPPET(&#39;esxi_51_ssh_config&#39;)<br>
$SNIPPET(&#39;esxi_51_local_disk_rename&#39;)<br>
$SNIPPET(&#39;esxi_51_create_vswitch1_vswitch2&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_vswitch_uplinks&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_active_uplinks&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_vswitch_failover&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_vswitch_cdp&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_vswitch_security&#39;)<br>
$SNIPPET(&#39;esxi_51_configure_vswitch_portgroups&#39;)<br>
$SNIPPET(&#39;esxi_51_enable_shell&#39;)<br>
$SNIPPET(&#39;esxi_51_syslog_config&#39;)<br>
$SNIPPET(&#39;esxi_51_syslog_rotation&#39;)<br>
$SNIPPET(&#39;esxi_51_ntp_config&#39;)<br>
$SNIPPET(&#39;esxi_51_firewall_config&#39;)<br>
$SNIPPET(&#39;esxi_51_finish&#39;)<br>
$SNIPPET(&#39;kickstart_done&#39;)<br>
<br>
In this build, I need to specify NTP server, management server ip,  and 3 vmkernel IP&#39;s, how would I do that in the system profile if those fields are not available?<br>
<br>
I&#39;d rather not embed anything into the ks<br>
<div class="im"><br>
____________________________<br>
Eric Sarakaitis<br>
Sr. Systems Engineer<br>
<a href="tel:419.303.4624" value="+14193034624">419.303.4624</a><br>
</div><a href="mailto:eric.sarakaitis@cbts.cinbell.com">eric.sarakaitis@cbts.cinbell.com</a>&lt;mailto:<a href="mailto:eric.sarakaitis@cbts.cinbell.com">eric.sarakaitis@cbts.cinbell.com</a>&gt;<br>
[cid:8E83CF36-9BD7-49C3-A98E-0701299F8AE4]<br>
[cid:598BE9E0-C0DF-4B89-9F76-9E5541109BBC]<br>
<br>
From: James Cammarata &lt;<a href="mailto:jimi@sngx.net">jimi@sngx.net</a>&lt;mailto:<a href="mailto:jimi@sngx.net">jimi@sngx.net</a>&gt;&gt;<br>
Reply-To: cobbler mailing list &lt;<a href="mailto:cobbler@lists.fedorahosted.org">cobbler@lists.fedorahosted.org</a>&lt;mailto:<a href="mailto:cobbler@lists.fedorahosted.org">cobbler@lists.fedorahosted.org</a>&gt;&gt;<br>

Date: Wednesday, March 6, 2013 11:09 AM<br>
To: cobbler mailing list &lt;<a href="mailto:cobbler@lists.fedorahosted.org">cobbler@lists.fedorahosted.org</a>&lt;mailto:<a href="mailto:cobbler@lists.fedorahosted.org">cobbler@lists.fedorahosted.org</a>&gt;&gt;<br>
Subject: Re: [cobbler] Kistart done stanza - not expanding<br>
<div class="HOEnZb"><div class="h5"><br>
On Wed, Mar 6, 2013 at 9:44 AM, Sarakaitis, Eric &lt;<a href="mailto:Eric.Sarakaitis@cbts.cinbell.com">Eric.Sarakaitis@cbts.cinbell.com</a>&lt;mailto:<a href="mailto:Eric.Sarakaitis@cbts.cinbell.com">Eric.Sarakaitis@cbts.cinbell.com</a>&gt;&gt; wrote:<br>

Do you put that like this?<br>
<br>
$SNIPPET(&#39;kickstart_start&#39;)<br>
$SNIPPET(&#39;network_config_esxi&#39;)<br>
accepteula<br>
install --firstdisk --overwritevmfs<br>
rootpw vmware123<br>
reboot<br>
<br>
%pre --interpreter=busybox<br>
<br>
%firstboot --interpreter=busybox<br>
$SNIPPET(&#39;kickstart_done&#39;)<br>
<br>
No, the kickstart_start snippet needs to go in the %pre section, and the kickstart_done snippet needs to go in the %post section (typically the last entry). Check the sample_end.ks that ships with cobbler to see how we do it by default.<br>

</div></div><br>_______________________________________________<br>
cobbler mailing list<br>
<a href="mailto:cobbler@lists.fedorahosted.org">cobbler@lists.fedorahosted.org</a><br>
<a href="https://lists.fedorahosted.org/mailman/listinfo/cobbler" target="_blank">https://lists.fedorahosted.org/mailman/listinfo/cobbler</a><br>
<br></blockquote></div><br></div>