diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 09:47:32 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-05-15 09:47:32 +0000 |
commit | 0feedfb1dc83b080c43402bab224ba4ca27ebc8b (patch) | |
tree | 3c163137cb0c14aef59fdac38d53ff32197fa3d1 /openwrt/package/radvd/files/S51radvd | |
parent | fc35a318ab6e9fc5eff4ddfb4bb7ff366cffc548 (diff) |
Convert radvd to new packaging style
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@904 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/radvd/files/S51radvd')
-rwxr-xr-x | openwrt/package/radvd/files/S51radvd | 23 |
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 |