aboutsummaryrefslogtreecommitdiffstats
path: root/testing/openswan/ipsec.initd
diff options
context:
space:
mode:
Diffstat (limited to 'testing/openswan/ipsec.initd')
-rw-r--r--testing/openswan/ipsec.initd25
1 files changed, 0 insertions, 25 deletions
diff --git a/testing/openswan/ipsec.initd b/testing/openswan/ipsec.initd
deleted file mode 100644
index 32a06008ab..0000000000
--- a/testing/openswan/ipsec.initd
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/runscript
-
-# Openswan ipsec init.d file for alpine linux.
-
-name=ipsec
-daemon=/usr/libexec/ipsec/setup
-pidfile=/var/run/pluto/ipsec_setup.pid
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting ${name}"
- $daemon start
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${name}"
- $daemon stop
- eend $?
-}
-