service nagios reload not existent
Posted: Thu Sep 22, 2016 10:00 am
Hi all,
I have installed the latest version of Nagios 4.2.1 on Debian Jessie.
All is fine but the service is missing the reload option.
root@nagios-01: service nagios reload
Usage: /etc/init.d/nagios {start|stop|status|restart|try-restart|force-reload}
Now this is my nagios.service file in /run/systemd/generator.late/nagios.service
and this is my /etc/init.d/nagios file
Can anyone please point me to the right direction in order to solve the issue?
Thanks
I have installed the latest version of Nagios 4.2.1 on Debian Jessie.
All is fine but the service is missing the reload option.
root@nagios-01: service nagios reload
Usage: /etc/init.d/nagios {start|stop|status|restart|try-restart|force-reload}
Now this is my nagios.service file in /run/systemd/generator.late/nagios.service
Code: Select all
# Automatically generated by systemd-sysv-generator
[Unit]
SourcePath=/etc/init.d/nagios
Description=LSB: Example initscript
Before=runlevel2.target runlevel3.target runlevel4.target runlevel5.target shutdown.target
After=remote-fs.target systemd-journald-dev-log.socket
Conflicts=shutdown.target
[Service]
Type=forking
Restart=no
TimeoutSec=5min
IgnoreSIGPIPE=no
KillMode=process
GuessMainPID=no
RemainAfterExit=yes
SysVStartPriority=3
ExecStart=/etc/init.d/nagios start
ExecStop=/etc/init.d/nagios stop
Code: Select all
#!/bin/sh
# kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing.
if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then
set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script
fi
### BEGIN INIT INFO
# Provides: skeleton
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Example initscript
# Description: This file should be used to construct scripts to be
# placed in /etc/init.d. This example start a
# single forking daemon capable of writing a pid
# file. To get other behavoirs, implemend
# do_start(), do_stop() or other functions to
# override the defaults in /lib/init/init-d-script.
### END INIT INFO
# Author: my name <[email protected]>
#
# Please remove the "Author" lines above and replace them
# with your own name if you copy and modify this script.
DESC="Nagios"
NAME=nagios
DAEMON=/usr/local/nagios/bin/$NAME
DAEMON_ARGS="-d /usr/local/nagios/etc/nagios.cfg"
PIDFILE=/usr/local/nagios/var/$NAME.lock
Thanks