blob: e380a7526eefb7f6b1eac9ce77dcf9779fa02056 (
plain)
1 # Description: Nagios Remote Plugin Executor
2 # URL: http://exchange.nagios.org/directory/Addons/Monitoring-Agents/NRPE--2D-Nagios-Remote-Plugin-Executor/details
3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
4 # Depends on: nagios
5
6 name=nagios-nrpe
7 version=2.13
8 release=1
9 source=(http://downloads.sourceforge.net/sourceforge/nagios/nrpe-$version.tar.gz \
10 nrpe.rc)
11
12 build () {
13 cd nrpe-$version
14
15 ./configure --prefix=/usr \
16 --bindir=/usr/bin \
17 --sysconfdir=/etc/nagios \
18 --with-nagios-user=nagios \
19 --with-nagios-group=nagios \
20 --disable-nls
21
22 make nrpe
23 make DESTDIR=$PKG install-daemon install-daemon-config
24 install -D -m 0755 $SRC/nrpe.rc $PKG/etc/rc.d/nrpe
25 }
|