a0d065fa92
This commit adds the zed_notify_pushbullet() function and hooks it into zed_notify(), thereby integrating it with the existing "notify" ZEDLETs. This enables ZED to push notifications to your desktop computer and/or mobile device(s). It is configured with the ZED_PUSHBULLET_ACCESS_TOKEN and ZED_PUSHBULLET_CHANNEL_TAG variables in zed.rc. https://www.pushbullet.com/ The Makefile install-data-local target has been replaced with install-data-hook. With the "-local" target, there is no particular guarantee of execution order. But with the zed.rc now potentially containing sensitive information (i.e., the Pushbullet access token), the recommended permissions have changed to 0600. The "-hook" target is always executed after the main rule's work is done; thus, the chmod will always take place after the zed.rc file has been installed. https://www.gnu.org/software/automake/manual/automake.html#Extending Signed-off-by: Chris Dunlap <cdunlap@llnl.gov>
81 lines
1.8 KiB
Plaintext
81 lines
1.8 KiB
Plaintext
##
|
|
# zed.rc
|
|
#
|
|
# This file should be owned by root and permissioned 0600.
|
|
##
|
|
|
|
##
|
|
# Absolute path to the debug output file.
|
|
#
|
|
#ZED_DEBUG_LOG="/tmp/zed.debug.log"
|
|
|
|
##
|
|
# Email address of the zpool administrator for receipt of notifications.
|
|
# Email will only be sent if ZED_EMAIL is defined.
|
|
# Disabled by default; uncomment to enable.
|
|
#
|
|
#ZED_EMAIL="root"
|
|
|
|
##
|
|
# Default directory for zed lock files.
|
|
#
|
|
#ZED_LOCKDIR="/var/lock"
|
|
|
|
##
|
|
# Minimum number of seconds between notifications for a similar event.
|
|
#
|
|
#ZED_NOTIFY_INTERVAL_SECS=3600
|
|
|
|
##
|
|
# Notification verbosity.
|
|
# If set to 0, suppress notification if the pool is healthy.
|
|
# If set to 1, send notification regardless of pool health.
|
|
#
|
|
#ZED_NOTIFY_VERBOSE=0
|
|
|
|
##
|
|
# Pushbullet access token.
|
|
# This grants full access to your account -- protect it accordingly!
|
|
# <https://www.pushbullet.com/get-started>
|
|
# <https://www.pushbullet.com/account>
|
|
# Disabled by default; uncomment to enable.
|
|
#
|
|
#ZED_PUSHBULLET_ACCESS_TOKEN=""
|
|
|
|
##
|
|
# Pushbullet channel tag for push notification feeds that can be subscribed to.
|
|
# <https://www.pushbullet.com/my-channel>
|
|
# If not defined, push notifications will instead be sent to all devices
|
|
# associated with the account specified by the access token.
|
|
# Disabled by default; uncomment to enable.
|
|
#
|
|
#ZED_PUSHBULLET_CHANNEL_TAG=""
|
|
|
|
##
|
|
# Default directory for zed state files.
|
|
#
|
|
#ZED_RUNDIR="/var/run"
|
|
|
|
##
|
|
# Replace a device with a hot spare after N checksum errors are detected.
|
|
# Disabled by default; uncomment to enable.
|
|
#
|
|
#ZED_SPARE_ON_CHECKSUM_ERRORS=10
|
|
|
|
##
|
|
# Replace a device with a hot spare after N I/O errors are detected.
|
|
# Disabled by default; uncomment to enable.
|
|
#
|
|
#ZED_SPARE_ON_IO_ERRORS=1
|
|
|
|
##
|
|
# The syslog priority (e.g., specified as a "facility.level" pair).
|
|
#
|
|
#ZED_SYSLOG_PRIORITY="daemon.notice"
|
|
|
|
##
|
|
# The syslog tag for marking zed events.
|
|
#
|
|
#ZED_SYSLOG_TAG="zed"
|
|
|