From f5eb3c5b008c044a253c0be753e9573e215d1f6c Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sat, 2 Nov 2019 05:19:02 -0400 Subject: Add calico rc script --- rc.d/calico | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 rc.d/calico (limited to 'rc.d/calico') diff --git a/rc.d/calico b/rc.d/calico new file mode 100644 index 0000000..583b65b --- /dev/null +++ b/rc.d/calico @@ -0,0 +1,27 @@ +#!/bin/sh + +# PROVIDE: calico +# REQUIRE: LOGIN +# KEYWORD: shutdown + +. /etc/rc.subr + +name='calico' +rcvar='calico_enable' + +load_rc_config "${name}" + +: ${calico_enable:="NO"} + +command='/usr/sbin/daemon' +child_command='/usr/local/bin/calico' +pidfile="/var/run/${name}.pid" + +child_flags=$calico_flags +child_user=$calico_user +unset calico_flags calico_user +command_args="\ + -p ${pidfile} -T ${name} ${child_user:+-u ${child_user}} \ + -- ${child_command} ${child_flags}" + +run_rc_command "$1" -- cgit 1.4.1