table of contents
UPSSCHED.CONF(5) | NUT Manual | UPSSCHED.CONF(5) |
NAME¶
upssched.conf - Configuration for upssched timer programDESCRIPTION¶
This file controls the operations of upssched(8), the timer-based helper program for upsmon(8).CONFIGURATION DIRECTIVES¶
CMDSCRIPT scriptnameRequired. This must be above any AT lines.
This script is used to invoke commands when your timers are triggered. It
receives a single argument which is the name of the timer that caused it to
trigger.
PIPEFN filename
Required. This sets the file name of the
socket which will be used for interprocess communications. This should be in a
directory where normal users can’t create the file, due to the
possibility of symlinking and other evil.
Required. upssched attempts to create this
file in order to avoid a race condition when two events are dispatched from
upsmon at nearly the same time. This file will only exist briefly. It must not
be created by any other process.
You should put this in the same directory as PIPEFN.
AT notifytype upsname command
Define a handler for a specific event
notifytype on UPS upsname. upsname can be the special
value * to apply this handler to every UPS.
This will perform the command command when the notifytype and
upsname match the current activity. Possible values for command
are:
START-TIMER timername interval
Start a timer of interval seconds. When
it triggers, it will pass the argument timername as an argument to your
CMDSCRIPT.
Example:
Start a timer that’ll execute when any UPS (*) has been gone for 10
seconds
CANCEL-TIMER timername [cmd]
AT COMMBAD * START-TIMER upsgone 10
Cancel a running timer called
timername, if possible. If the timer has passed then pass the optional
argument cmd to CMDSCRIPT.
Example:
If a specific UPS (myups@localhost) comes back online, then stop the timer
before it triggers
EXECUTE command
AT COMMOK myups@localhost CANCEL-TIMER upsgone
Immediately pass command as an argument
to CMDSCRIPT.
Example:
If any UPS (*) reverts to utility power, then execute ups-back-on-line via
CMDSCRIPT.
AT ONLINE * EXECUTE ups-back-on-line
SEE ALSO¶
upssched(8), upsmon(8)Internet resources:¶
The NUT (Network UPS Tools) home page: http://www.networkupstools.org/05/21/2012 | Network UPS Tools |