diff options
Diffstat (limited to 'rc.d/calico')
-rw-r--r-- | rc.d/calico | 27 |
1 files changed, 27 insertions, 0 deletions
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" |