aboutsummaryrefslogtreecommitdiff
path: root/security/racoon2/files/racoon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'security/racoon2/files/racoon.sh')
-rw-r--r--security/racoon2/files/racoon.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/security/racoon2/files/racoon.sh b/security/racoon2/files/racoon.sh
deleted file mode 100644
index d6a5c1b3098a..000000000000
--- a/security/racoon2/files/racoon.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- if [ -x %PREFIX%/sbin/racoon ]; then
- %PREFIX%/sbin/racoon -f %PREFIX%/etc/racoon/racoon.conf && echo -n ' racoon'
- fi
- ;;
-
- stop)
- /usr/bin/killall racoon && echo -n ' racoon'
- ;;
-
- *)
- echo "Usage: `basename $0` { start | stop }"
- exit 64
- ;;
-esac