From b7856cc45d5bd5485c805f028722a1961c83a23a Mon Sep 17 00:00:00 2001 From: Thorsten Glaser Date: Sun, 4 May 2014 00:11:56 +0000 Subject: rename init scripts so their basename matches their enabler variable --- package/openswan/files/ipsec.init | 29 +++++++++++++++++++++++++++++ package/openswan/files/openswan.init | 29 ----------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 package/openswan/files/ipsec.init delete mode 100644 package/openswan/files/openswan.init (limited to 'package/openswan') diff --git a/package/openswan/files/ipsec.init b/package/openswan/files/ipsec.init new file mode 100644 index 000000000..ec305538c --- /dev/null +++ b/package/openswan/files/ipsec.init @@ -0,0 +1,29 @@ +#!/bin/sh +#PKG openswan +#INIT 60 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${ipsec:-NO}" = x"NO" && exit 0 + test x"$ipsec" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start + 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 $? diff --git a/package/openswan/files/openswan.init b/package/openswan/files/openswan.init deleted file mode 100644 index ec305538c..000000000 --- a/package/openswan/files/openswan.init +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh -#PKG openswan -#INIT 60 -. /etc/rc.conf - -case $1 in -autostop) ;; -autostart) - test x"${ipsec:-NO}" = x"NO" && exit 0 - test x"$ipsec" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start - 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 $? -- cgit v1.2.3