openwrtv3/openwrt/package/radvd/files/S51radvd
Felix Fietkau 939e2c0ac9 create /var/run on radvd start
SVN-Revision: 656
2005-04-16 19:16:44 +00:00

23 lines
303 B
Bash
Executable file

#!/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