6ba9ae9e0e
Closes Homebrew/homebrew#25148. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
65 lines
1.9 KiB
Ruby
65 lines
1.9 KiB
Ruby
require 'formula'
|
|
|
|
class Nrpe < Formula
|
|
homepage 'http://www.nagios.org/'
|
|
url 'http://downloads.sourceforge.net/project/nagios/nrpe-2.x/nrpe-2.15/nrpe-2.15.tar.gz'
|
|
sha1 '45f434758c547c0af516e8b3324717f8dcd100a3'
|
|
|
|
depends_on 'nagios-plugins'
|
|
|
|
def install
|
|
user = `id -un`.chomp
|
|
group = `id -gn`.chomp
|
|
|
|
inreplace 'sample-config/nrpe.cfg.in', '/var/run/nrpe.pid', var+'run/nrpe.pid'
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--libexecdir=#{sbin}",
|
|
"--with-nrpe-user=#{user}",
|
|
"--with-nrpe-group=#{group}",
|
|
"--with-nagios-user=#{user}",
|
|
"--with-nagios-group=#{group}",
|
|
"--enable-ssl",
|
|
"--enable-command-args"
|
|
system "make all"
|
|
system "make install"
|
|
system "make install-daemon-config"
|
|
(var+'run').mkpath
|
|
end
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>org.nrpe.agent</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{HOMEBREW_PREFIX}/bin/nrpe</string>
|
|
<string>-c</string>
|
|
<string>#{etc}/nrpe.cfg</string>
|
|
<string>-d</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>ServiceDescription</key>
|
|
<string>Homebrew NRPE Agent</string>
|
|
<key>Debug</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
The nagios plugin check_nrpe has been installed in:
|
|
#{HOMEBREW_PREFIX}/sbin
|
|
|
|
You can start the daemon with
|
|
#{bin}/nrpe -c #{etc}/nrpe.cfg -d
|
|
EOS
|
|
end
|
|
end
|