Schedule

The schedule function configures the type of schedule to run, including one-time only (oneshot), periodic or calendar-based runs. All runs are determined by month, day of month or weekday, hour, minute and interval (seconds). If end-time and interval are both configured, whichever condition is reached first is applied. The following example schedules a script named test to run every 15 minutes on the 17th of each month and every Friday until noon on July 17, 2007:

Example: MD-CLI

[ex:/configure system cron]
A:admin@node-2# info
    schedule "test" owner "TiMOS CLI" {
        day-of-month [17]
        minute [0 15 30 45]
        weekday [friday]
        end-time {
            date-and-time 2007-07-17T12:00:00.0+00:00
        }
    }

Example: classic CLI

config>system>cron# info
----------------------------------------------
            schedule "test2"
                shutdown
                day-of-month 17
                minute 0 15 30 45
                weekday friday
                end-time 2007/07/17 12:00
            exit
----------------------------------------------