Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
NADS - Nagios Automated Downtime Scheduler
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
The purpose of this tool is to use cron to schedule downtime for hosts or services that have regularly scheduled downtimes (like a Windows box being rebooted once a week to get all of the updates applied).
Reviews (1)
byjurim, December 22, 2013
In "sched_host_downtime"
$ECHOCMD is pretty useless, "echo" is a shell builtin.
if [ $# -gt 0 ]; then
usage
Should be: if [ $# -eq 0]; then usage
Also "usage" function should be defined before, not after.
$ECHOCMD is pretty useless, "echo" is a shell builtin.
if [ $# -gt 0 ]; then
usage
Should be: if [ $# -eq 0]; then usage
Also "usage" function should be defined before, not after.