diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-26 11:58:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-04-26 11:58:31 +0000 |
commit | a90dec223768b25ef1f2086676cbb33f7e3fb253 (patch) | |
tree | 67483d297356f3f878a9424689e97707fee4168e /testing/openswan/ipsec.initd | |
parent | 5ff43da0bea46ba52111889550df68fd61ce46ef (diff) | |
download | aports-a90dec223768b25ef1f2086676cbb33f7e3fb253.tar.bz2 aports-a90dec223768b25ef1f2086676cbb33f7e3fb253.tar.xz |
main/openswan: move to main
fixes #700
Diffstat (limited to 'testing/openswan/ipsec.initd')
-rw-r--r-- | testing/openswan/ipsec.initd | 25 |
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 $? -} - |