summaryrefslogtreecommitdiff
path: root/package/strongswan/files/strongswan.init
diff options
context:
space:
mode:
Diffstat (limited to 'package/strongswan/files/strongswan.init')
-rw-r--r--package/strongswan/files/strongswan.init26
1 files changed, 0 insertions, 26 deletions
diff --git a/package/strongswan/files/strongswan.init b/package/strongswan/files/strongswan.init
deleted file mode 100644
index fcf30a469..000000000
--- a/package/strongswan/files/strongswan.init
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#FWINIT 60
-. /etc/rc.conf
-
-case $1 in
-autostart)
- test x"${ipsec:-NO}" = x"NO" && exit 0
- exec sh $0 start
- ;;
-start)
- /usr/libexec/ipsec/setup start
- ;;
-stop)
- /usr/libexec/ipsec/setup stop
- ;;
-restart)
- sh $0 stop
- sleep 3
- sh $0 start
- ;;
-*)
- echo "Usage: $0 {start | stop | restart}"
- exit 1
- ;;
-esac
-exit $?