-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to uninstall, Makefile, and a macro change. Add upstart-init.
- Loading branch information
John C. Frickson
committed
Apr 27, 2016
1 parent
b029fa3
commit 13aa14b
Showing
5 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# nrpe - the Nagios Remote Plugin Executor | ||
# | ||
# nrpe is a program that runs plugins on this host | ||
# and reports the results back to a nagios server | ||
# | ||
# Copyright (c) 2016 Nagios(R) Core(TM) Development Team | ||
|
||
description "the Nagios Remote Plugin Executor" | ||
|
||
oom score -800 | ||
setgid nagios | ||
setuid nagios | ||
|
||
start on (local-filesystems and net-device-up IFACE!=lo) | ||
stop on runlevel [!2345] | ||
|
||
expect daemon | ||
respawn | ||
|
||
exec /usr/sbin/nrpe -c /etc/nagios/nrpe.cfg -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters