#!/bin/sh

# PROVIDE: garage
# REQUIRE: NETWORKING
# KEYWORD: shutdown

# Add the following line to /etc/rc.conf.local or /etc/rc.conf to enable garage:
#
# garage_enable="YES"
#

. /etc/rc.subr

name=garage
desc="Distributed object storage"
rcvar=${name}_enable

# read configuration and set defaults
load_rc_config $name
: ${garage_enable="NO"}
: ${garage_config="/usr/local/etc/garage.toml"}
: ${garage_log_file="/var/log/garage.log"}

command=/usr/sbin/daemon
procname="/usr/local/bin/${name}"
required_files=${garage_config}
pidfile=/var/run/${name}.pid
command_args="-p $pidfile -H -o ${garage_log_file} -f $procname -c ${garage_config} server"

status_cmd="$procname -c ${garage_config} status"

run_rc_command "$1"
