HP 3PAR InForm OS 3.1.1 Command Line Interface Reference

2h). The created snapshot will be named sample_vv_set.HH.MMM where HH and MM refer to
the hour and minute that the snapshot was created (@vvname@.@H@.@M@):
cli% createsched "createsv -ro -exp 2h @vvname@.@H@.@M@ vv" "0 * * * *" sv_task
The following example creates a scheduled task which will create a consistent group snapshot.
The read-only snapshots will be created from the volume set: dbora (see CLI Help -sub
objectsets) that will expire in two hours (-exp 2h) and the snapshots will be named using the
pattern @vvname@.@s@ (volume name specified in the set, with the epoch in seconds appended).
The task will be named snap_odbora_set and run every hour on the hour during the working
hours from 8am to 5pm ("0 8-17 * * *"):
cli% createsched "createsv -ro -exp 2h @vvname@.@s@ set:dbora" "0 8-17 * * *"
sv_dbora_task
The following example creates a scheduled task which will create a consistent group snapshot for
a single virtual volume:
createsched "createsv -ro -exp 2h @vvname@.@s@ vvname" "0 * * * *" snap_large_tpvv_a
NOTES
The <taskschedule> string has five fixed fields: minute, hour, day-of-month, month,
day-of-week.
Fields are separated by spaces. The allowed values for the fields are:
Allowed ValuesField
0-59Minute
* or 0-23Hour
* or 1-31Day-of-Month
* or 1-12Month
* or 0-6 (0 is Sunday)Day-of-Week
Scheduling on February 29 is not supported.
Lists are allowed. A list is a set of numbers (or ranges) separated by commas. Examples:
1,2,5,9, “0-4,8-12.
Ranges of numbers are allowed. Ranges are two numbers separated with a hyphen. The
specified range is inclusive. For example, 8-11 for an hour entry specifies execution at hours
8, 9, 10 and 11. Ranges must be specified from low to high.
One of six special strings may also appear instead of the specification above:
MeaningString
Run every January 1st, "0 0 1 1 *"@yearly
Run the first day of every month, "0 0 1 * *"@monthly
Run every Sunday, "0 0 * * 0"@weekly
createsched 131