projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
upgrade kernel, quagga and openvpn, add licensing info to diag module, fix up jffs2
[openwrt.git]
/
package
/
radvd
/
files
/
S51radvd
1
#!/bin/sh
2
3
case
"
$1
"
in
4
start
)
5
echo
1
> /
proc
/
sys
/
net
/
ipv
6
/
conf
/
all
/
forwarding
6
/
usr
/
sbin
/
radvd
7
;;
8
9
stop
)
10
killall radvd
11
echo
0
> /
proc
/
sys
/
net
/
ipv
6
/
conf
/
all
/
forwarding
12
;;
13
14
restart
)
15
$0
stop
16
$0
start
17
;;
18
*)
19
echo
"Usage:
$0
{start|stop|restart}"
20
exit
1
21
;;
22
esac
This page took
0.057289 seconds
and
5
git commands to generate.