18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
extra_started_commands="reload"
|
|
|
|
supervisor="supervise-daemon"
|
|
|
|
agent_name=${SVCNAME#pgmon.}
|
|
agent_name=${agent_name:-pgmon}
|
|
|
|
PGMON_USER="${PGMON_USER:-postgres}"
|
|
PGMON_GROUP="${PGMON_GROUP:-$PGMON_USER}"
|
|
CONFIG_FILE="/etc/pgmon/${agent_name}.yml"
|
|
|
|
command="/usr/bin/pgmon"
|
|
command_args="'$CONFIG_FILE'"
|
|
command_background="true"
|
|
command_user="${PGMON_USER}:${PGMON_GROUP}"
|