This section explains L-Server template XML definitions.
The L-Server template XML definitions differ depending on the server type.
For physical L-Servers, refer to "15.2.1 Physical L-Server Templates".
For virtual L-Servers, refer to "15.2.2 Virtual L-Server Templates".
If a template is imported without editing the L-Server template name, the content of the existing L-Server template is overwritten. If an L-Server template is imported after the name is edited from when it was exported, the L-Server template is added.
When defining multiple L-Server templates, define multiple L-Servers for each file, assign them different L-Server template names, and enclose them with the LServerTemplates element.
If there is only one L-Server template, the LServerTemplates element is optional.
Note
When you specify a tag that does not include the element in the subordinate of the XML tag, specify an empty element tag instead of the end tag.
Example
Do not specify an end tag as shown below.
<?xml version="1.0" encoding="utf-8"?> <LServerTemplate name="L-Server#1 Template Name" label="Label"> <ServerImageLink disk="Disk Deployment Settings during Image Specification(all)"> </ServerImageLink> ... </LServerTemplate> |
Specify an empty element tag instead of the end tag.
<?xml version="1.0" encoding="utf-8"?> <LServerTemplate name="L-Server#1 Template Name" label="Label"> <ServerImageLink disk="Disk Deployment Settings during Image Specification(all)"/> ... </LServerTemplate> |