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/dhcp-forwarder/files/dhcp-fwd.init | 28 ---------------------------- package/dhcp-forwarder/files/dhcp_fwd.init | 28 ++++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 28 deletions(-) delete mode 100644 package/dhcp-forwarder/files/dhcp-fwd.init create mode 100644 package/dhcp-forwarder/files/dhcp_fwd.init (limited to 'package/dhcp-forwarder') diff --git a/package/dhcp-forwarder/files/dhcp-fwd.init b/package/dhcp-forwarder/files/dhcp-fwd.init deleted file mode 100644 index 165e3cf52..000000000 --- a/package/dhcp-forwarder/files/dhcp-fwd.init +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -#PKG dhcp-forwarder -#INIT 80 -. /etc/rc.conf - -case $1 in -autostop) ;; -autostart) - test x"${dhcp_fwd:-NO}" = x"NO" && exit 0 - test x"$dhcp_fwd" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start - exec sh $0 start - ;; -start) - /usr/sbin/dhcp-fwd - ;; -stop) - kill $(pgrep -f /usr/sbin/dhcp-fwd) - ;; -restart) - sh $0 stop - sh $0 start - ;; -*) - echo "Usage: $0 {start | stop | restart}" - exit 1 - ;; -esac -exit $? diff --git a/package/dhcp-forwarder/files/dhcp_fwd.init b/package/dhcp-forwarder/files/dhcp_fwd.init new file mode 100644 index 000000000..165e3cf52 --- /dev/null +++ b/package/dhcp-forwarder/files/dhcp_fwd.init @@ -0,0 +1,28 @@ +#!/bin/sh +#PKG dhcp-forwarder +#INIT 80 +. /etc/rc.conf + +case $1 in +autostop) ;; +autostart) + test x"${dhcp_fwd:-NO}" = x"NO" && exit 0 + test x"$dhcp_fwd" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start + exec sh $0 start + ;; +start) + /usr/sbin/dhcp-fwd + ;; +stop) + kill $(pgrep -f /usr/sbin/dhcp-fwd) + ;; +restart) + sh $0 stop + sh $0 start + ;; +*) + echo "Usage: $0 {start | stop | restart}" + exit 1 + ;; +esac +exit $? -- cgit v1.2.3