13 lines
150 B
Plaintext
13 lines
150 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2007 OpenWrt.org
|
||
|
|
||
|
START=70
|
||
|
|
||
|
start() {
|
||
|
/usr/sbin/nrpe -c /etc/nrpe.cfg -d
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall nrpe
|
||
|
}
|