1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/sysutils/serf/files/serf.in
Steve Wills 2321fdeef7 sysutils/serf: add new port
Serf is a decentralized solution for service discovery and orchestration that
is lightweight, highly available, and fault tolerant.

WWW: https://serfdom.io/
2015-05-06 17:12:45 +00:00

47 lines
995 B
Bash

#!/bin/sh
# $FreeBSD$
#
# PROVIDE: serf
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# serf_enable (bool): Set to NO by default.
# Set it to YES to enable serf.
# serf_user (user): Set user to run serf.
# Default is "serf".
# serf_group (group): Set group to run serf.
# Default is "serf".
. /etc/rc.subr
name=serf
rcvar=serf_enable
load_rc_config $name
: ${serf_enable:="NO"}
: ${serf_user:="serf"}
: ${serf_group:="serf"}
: ${serf_dir:="/var/tmp/serf"}
pidfile=/var/run/serf.pid
procname="%%PREFIX%%/bin/serf"
command="/usr/sbin/daemon"
command_args="agent"
command_args="-f -p ${pidfile} ${procname} agent ${serf_args}"
start_precmd=serf_startprecmd
serf_startprecmd()
{
if [ ! -e ${pidfile} ]; then
install -o ${serf_user} -g ${serf_group} /dev/null ${pidfile};
fi
}
run_rc_command "$1"