mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-26 11:29:12 +02:00
* FreeBSD/pandora_agent: Small fixes: use proper rc variables, remove obsolete function "set_rcvar" call and use "daemon" command to start pandora_agent. * pandora_agent_installer: Refactored implementation and added "fakeroot" installation support. * plugins/who.sh: Converted to bourne shell script. * pandora_agent_daemon: Small bug fixes and refactorings. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10414 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
46 lines
1.0 KiB
Bash
Executable File
46 lines
1.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# **********************************************************************
|
|
# Pandora FMS Agent Daemon launcher for FreeBSD
|
|
# (c) 2010 Junichi Satoh <junichi@rworks.jp>
|
|
# (c) 2014 Koichiro Kikuchi <koichiro@rworks.jp>
|
|
#
|
|
# **********************************************************************
|
|
|
|
# PROVIDE: pandora_agent
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following line to /etc/rc.conf to enable `pandora_agent':
|
|
#
|
|
# pandora_agent_enable="YES"
|
|
#
|
|
|
|
. "/etc/rc.subr"
|
|
|
|
name="pandora_agent"
|
|
rcvar=pandora_agent_enable
|
|
|
|
# read configuration and set defaults
|
|
pandora_agent_enable=${pandora_agent_enable:-"NO"}
|
|
load_rc_config "$name"
|
|
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin
|
|
|
|
pidfile=/var/run/$name.pid
|
|
required_files="/usr/local/etc/pandora/pandora_agent.conf"
|
|
stop_postcmd=stop_postcmd
|
|
|
|
command=/usr/bin/daemon
|
|
command_interpreter=/usr/local/bin/perl
|
|
procname=/usr/local/bin/pandora_agent
|
|
|
|
command_args="-cfp $pidfile $procname /usr/local/etc/pandora"
|
|
|
|
stop_postcmd()
|
|
{
|
|
rm -f $pidfile
|
|
}
|
|
|
|
run_rc_command "$1"
|