...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /nagios_install/nrpe-nrpe-4.1.0/startup/ |
Upload File : |
#!/bin/sh # # Copyright (c) 2016 Nagios(R) Core(TM) Development Team # # Start/stop the nrpe daemon. NRPE_BIN=/usr/local/nagios/bin/nrpe NRPE_CFG=/etc/nagios//nrpe.cfg PID_FILE=/usr/local/nagios/var/nrpe.pid test -x $NRPE_BIN || exit 0 case "$1" in start) echo -n "Starting nagios remote plugin daemon: nrpe" start-stop-daemon --start --quiet --pidfile $PID_FILE --exec $NRPE_BIN -- -c $NRPE_CFG -d echo "." ;; stop) echo -n "Stopping nagios remote plugin daemon: nrpe" start-stop-daemon --stop --quiet --pidfile $PID_FILE --exec $NRPE_BIN echo "." ;; restart|force-reload) echo -n "Restarting nagios remote plugin daemon: nrpe" start-stop-daemon --stop --quiet --pidfile $PID_FILE --exec $NRPE_BIN start-stop-daemon --start --quiet --pidfile $PID_FILE --exec $NRPE_BIN -- -c $NRPE_CFG -d echo "." ;; reload) echo -n "Reloading configuration files for nagios remote plugin daemon: nrpe" test -f $PID_FILE || exit 0 test -x /bin/kill && /bin/kill -HUP `cat $PID_FILE` echo "." ;; *) echo "Usage: $0 start|stop|restart|reload|force-reload" exit 1 ;; esac exit 0