#!/bin/sh

# PROVIDE: walletd
# REQUIRE: LOGIN FILESYSTEMS netwait
# KEYWORD: SHUTDOWN
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# walletd_enable (bool):	Set to NO by default.
#			Set it to YES to enable doormand.
# walletd_datadir (path):	Set to /var/lib/walletd by default.
#
# walletd_passwordfile (filepath): set the UI password there.
#                       by default located in /usr/local/etc/walletd.conf 

. /etc/rc.subr

name=walletd
rcvar=${name}_enable

load_rc_config $name

: ${walletd_enable:=NO}
: ${walletd_executable:="/usr/local/bin/walletd"}
: ${walletd_config:="/usr/local/etc/walletd.yml"}

walletd_env="WALLETD_CONFIG_FILE=${walletd_config}"
pidfile="/var/run/${name}.pid"
command="/usr/sbin/daemon"
command_args="-r -f -H \
  -o \"/var/log/${name}.log\" \
  -P \"${pidfile}\" \
  -u walletd \"${walletd_executable}\"

run_rc_command "$1"
