mirror of https://github.com/aredn/aredn.git
10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ -f /etc/config/run-fccid ] || exit
|
||
|
|
||
|
# stagger the beacons between nodes
|
||
|
N=`ifconfig wlan0 | grep "inet addr" | cut -f4 -d. | cut -c1-3`
|
||
|
sleep $N
|
||
|
|
||
|
netmsg 10.255.255.255 "ID: `uname -n`"
|