removed the old directories, too.. cleanup is ready, yay
[openwrt/svn-archive/archive.git] / obsolete-buildroot / sources / openwrt / ipkg / dhcp-fwd / root / etc / init.d / dhcp-fwd
diff --git a/obsolete-buildroot/sources/openwrt/ipkg/dhcp-fwd/root/etc/init.d/dhcp-fwd b/obsolete-buildroot/sources/openwrt/ipkg/dhcp-fwd/root/etc/init.d/dhcp-fwd
deleted file mode 100644 (file)
index 597e1fc..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-case $1 in
- start)
-  [ -d /var/log ] || mkdir -p /var/log
-  [ -d /var/run/dhcp-wfd ] || mkdir -p /var/run/dhcp-fwd
-  dhcp-fwd
-  ;;
- stop)
-  [ -f /var/run/dhcpd-fwd.pid ] && kill $(cat /var/run/dhcpd-fwd.pid) 2>/dev/null
-  ;;
- *)
-  echo "usage: $0 (start|stop)"
-  exit 1
-esac
-
-exit $?