Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 683 Bytes

laterthan.markdown

File metadata and controls

31 lines (23 loc) · 683 Bytes
layout title published
default
laterthan
true

[%CFEngine_function_prototype(year, month, day, hour, minute, second)%]

Description: Returns whether the current time is later than the given date and time.

The specified date/time is an absolute date in the local timezone. Note that, unlike some other functions, the month argument is 1-based (i.e. 1 corresponds to January).

[%CFEngine_function_attributes(year, month, day, hour, minute, second)%]

Example:

bundle agent example
{
    classes:

      "after_deadline" expression => laterthan(2000,1,1,0,0,0);
    reports:
      after_deadline::
        "deadline has passed";
}

See also: on()