You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/mms-agent/files/mms-monitoring-agent.initd

25 lines
577 B

#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
logfile=/var/log/mongodb/mms-monitoring-agent.log
run_dir=${run_dir:-/run/mongodb}
command="./mongodb-mms-monitoring-agent &>${logfile}"
command_background="true"
pidfile=${run_dir}/${SVCNAME}.pid
user=${user:-mongodb}
group=${group:-mongodb}
start_stop_daemon_args="--user ${user} --group ${group}"
depend() {
need net
use syslog
}
start_pre() {
checkpath -d -m 0750 -o "${user}":"${group}" "${run_dir}"
cd /opt/mms-monitoring-agent
}