mirror of
https://git.freebsd.org/ports.git
synced 2025-05-02 03:26:41 -04:00
32 lines
782 B
Bash
32 lines
782 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: supervisord
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following line to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable supervisord:
|
|
#
|
|
# supervisord_enable="bool" Set to NO by default.
|
|
# Set it to YES to enable supervisord.
|
|
# supervisord_config (patch): Set to %%PREFIX%%/etc/supervisord.conf by default.
|
|
# supervisord_user (username): Set to root by default.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="supervisord"
|
|
rcvar=supervisord_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${supervisord_enable="NO"}
|
|
: ${supervisord_config="%%PREFIX%%/etc/supervisord.conf"}
|
|
: ${supervisord_user="root"}
|
|
|
|
command="%%PREFIX%%/bin/${name}"
|
|
command_args="-u ${supervisord_user} -c ${supervisord_config}"
|
|
command_interpreter="%%PYTHON_CMD%%"
|
|
pidfile="%%PIDDIR%%/${name}.pid"
|
|
|
|
run_rc_command "$1"
|