summaryrefslogtreecommitdiffstats
path: root/openwrt/package/radvd/files/S51radvd
diff options
context:
space:
mode:
Diffstat (limited to 'openwrt/package/radvd/files/S51radvd')
-rwxr-xr-xopenwrt/package/radvd/files/S51radvd23
1 files changed, 0 insertions, 23 deletions
diff --git a/openwrt/package/radvd/files/S51radvd b/openwrt/package/radvd/files/S51radvd
deleted file mode 100755
index 4bd5a1872..000000000
--- a/openwrt/package/radvd/files/S51radvd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-case "$1" in
- start)
- echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
- mkdir -p /var/run
- /usr/sbin/radvd
- ;;
-
- stop)
- killall radvd
- echo 0 > /proc/sys/net/ipv6/conf/all/forwarding
- ;;
-
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: $0 {start|stop|restart}"
- exit 1
- ;;
-esac