#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: afsserver
# REQUIRE: networking
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# afsserver_enable (bool):	Set to NO by default.
#				Set it to YES to enable AFS server activities.

. /etc/rc.subr

name="afsserver"
rcvar="afsserver_enable"

command="/usr/local/sbin/bosserver"

stop_precmd="afsserver_prestop"

vicedir="/usr/local/etc/openafs/server"
required_files="${vicedir}/CellServDB ${vicedir}/KeyFile ${vicedir}/ThisCell ${vicedir}/UserList"

load_rc_config "$name"

: ${afsserver_enable:="NO"}

afsserver_prestop()
{
	/usr/local/bin/bos shutdown -localauth -server localhost
}

run_rc_command "$1"
