Remove FreeBSD packaging
[openafs.git] / src / packaging / FreeBSD / afsserver.in
diff --git a/src/packaging/FreeBSD/afsserver.in b/src/packaging/FreeBSD/afsserver.in
deleted file mode 100644 (file)
index 299a4a7..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/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="%%PREFIX%%/sbin/bosserver"
-
-stop_precmd="afsserver_prestop"
-
-vicedir="%%PREFIX%%/etc/openafs/server"
-required_files="${vicedir}/CellServDB ${vicedir}/KeyFile ${vicedir}/ThisCell ${vicedir}/UserList"
-
-load_rc_config "$name"
-
-: ${afsserver_enable:="NO"}
-
-afsserver_prestop()
-{
-       %%PREFIX%%/bin/bos shutdown -localauth -server localhost
-}
-
-run_rc_command "$1"