From ad3c55ffddb1d80708e5024a0699765d902db2be Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Tue, 18 Jul 2000 03:20:08 +0000 Subject: Use new style start/stop rc.d script Unrestrict port since we are able to distribute crypto --- security/cfs/files/cfsd.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 security/cfs/files/cfsd.sh (limited to 'security/cfs/files') diff --git a/security/cfs/files/cfsd.sh b/security/cfs/files/cfsd.sh new file mode 100644 index 000000000000..488962b97f43 --- /dev/null +++ b/security/cfs/files/cfsd.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then + echo "$0: Cannot determine the PREFIX" >&2 + exit 1 +fi + +case "$1" in +start) + [ -x ${PREFIX}/sbin/cfsd ] && ${PREFIX}/sbin/cfsd > /dev/null 2>&1 && echo -n ' cfsd' + ;; +stop) + ;; +*) + echo "Usage: `basename $0` {start|stop}" >&2 + ;; +esac + +exit 0 -- cgit v1.2.3