aboutsummaryrefslogtreecommitdiff
path: root/sysutils/consul-replicate/files
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2018-03-23 16:54:47 +0000
committerSteve Wills <swills@FreeBSD.org>2018-03-23 16:54:47 +0000
commitff0184c52fc38051ae77b2a59af62dc3480f81b5 (patch)
tree2214548ad76703a6fe118aaacaea2b9027c60f4f /sysutils/consul-replicate/files
parent944fd9e99aa87c05dc57767c8b57a618dd78eac4 (diff)
downloadports-ff0184c52fc38051ae77b2a59af62dc3480f81b5.tar.gz
ports-ff0184c52fc38051ae77b2a59af62dc3480f81b5.zip
Notes
Diffstat (limited to 'sysutils/consul-replicate/files')
-rw-r--r--sysutils/consul-replicate/files/consul-replicate.in44
1 files changed, 44 insertions, 0 deletions
diff --git a/sysutils/consul-replicate/files/consul-replicate.in b/sysutils/consul-replicate/files/consul-replicate.in
new file mode 100644
index 000000000000..ee6ab52cc43c
--- /dev/null
+++ b/sysutils/consul-replicate/files/consul-replicate.in
@@ -0,0 +1,44 @@
+#!/bin/sh
+
+# $FreeBSD$
+#
+# PROVIDE: consul-replicate
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# consul_replicate_enable (bool): Set to NO by default.
+# Set it to YES to enable consul.
+# consul_replicate_user (user): Set user to run consul.
+# Default is "consul".
+# consul_replcate_group (group): Set group to run consul.
+# Default is "consul".
+
+. /etc/rc.subr
+
+name=consul_replicate
+rcvar=consul_replicate_enable
+
+load_rc_config $name
+
+: ${consul_replicate_enable:="NO"}
+: ${consul_replicate_user:="consul"}
+: ${consul_replicate_group:="consul"}
+
+pidfile=/var/run/consul-replicate.pid
+procname="%%PREFIX%%/bin/consul-replicate"
+command="/usr/sbin/daemon"
+command_args="-f -p ${pidfile} /usr/bin/env ${consul_replicate_env} ${procname} -config '%%PREFIX%%/etc/consul-replicate.d' ${consul_replicate_args}"
+
+start_precmd=consul_replicate_startprecmd
+
+consul_replicate_startprecmd()
+{
+ if [ ! -e ${pidfile} ]; then
+ install -o ${consul_replicate_user} -g ${consul_replicate_group} /dev/null ${pidfile};
+ fi
+}
+
+run_rc_command "$1"