summaryrefslogtreecommitdiff
path: root/security/stunnel/files/stunnel.in
diff options
context:
space:
mode:
Diffstat (limited to 'security/stunnel/files/stunnel.in')
-rw-r--r--security/stunnel/files/stunnel.in25
1 files changed, 0 insertions, 25 deletions
diff --git a/security/stunnel/files/stunnel.in b/security/stunnel/files/stunnel.in
deleted file mode 100644
index 8edeb0c175dc..000000000000
--- a/security/stunnel/files/stunnel.in
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-#
-# A sample stunnel startup script written by martti.kuparinen@ericsson.com
-#
-# $FreeBSD$
-#
-
-# Where is the program
-STUNNEL="!!PREFIX!!/sbin/stunnel"
-
-case "$1" in
- start)
- ${STUNNEL} !!PREFIX!!/etc/stunnel/stunnel.conf
- ;;
-
- stop)
- killall `basename ${STUNNEL}`
- ;;
-
- *)
- echo ""
- echo "Usage: `basename $0` { start | stop }"
- echo ""
- ;;
-esac