Veritas Storage Foundation Intelligent Storage Provisioning 5.0.1 Administrators Guide, HP-UX 11i v3, First Edition, November 2009
Specifies the start of the section that contains the rules for
selecting and laying out storage, and which implement the
capabilities that the user template provides.
See “Rules” on page 153.
rules
Specifies an optional default tag for a volume.
See “User template” on page 179.
tag
In the following example, consider a capability named HardwareReplication that
has two variable parameters that specify the source and the destination:
capability HardwareReplication {
var source:string
var destination:string
};
The following capability named Reliable, provides reliability by creating a
mirrored volume:
capability Reliable {
var NMIRS:int
};
Rules can also be specified to user templates, as shown in the following examples
of the templates DB_Table and DB_Index, that could be used for creating application
volumes for database tables and indexes:
user_template DB_Table {
description "Makes mirrored volume for a database table"
capability DataMirroring {
NMIRS = 2
}
rules {
confineto "VendorName"="EMC"
}
};
user_template DB_Index {
description "Makes high performance volume for a database index"
capability Striping {
NCOLS = 8
}
rules {
confineto "VendorName"="EMC"
141Creating and modifying user templates
Format of user templates