summaryrefslogtreecommitdiff
path: root/security/cfs/files
diff options
context:
space:
mode:
Diffstat (limited to 'security/cfs/files')
-rw-r--r--security/cfs/files/cfsd.sh19
1 files changed, 19 insertions, 0 deletions
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