blob: 8107cd29f5a7849650826108bbd68645d39d342c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# functions that are allowed to be called if we are in the queen or
# ghost state
gwiptbl=/tmp/p2ptbl/gwip
DHCPLeaseTime=$((12 * 3600))
NodeId="$(cat /etc/nodeid)"
oct3=$(ifconfig br-mesh | egrep -o 'inet addr:[0-9.]*'|cut -f3 -d.)
[ -n "$oct3" ]
we_own_our_ip () {
[ "$(p2ptbl get $gwiptbl $oct3 | cut -sf2)" == "$NodeId" ]
}
|