mirror of
https://github.com/srlabs/blue-merle.git
synced 2024-12-23 06:09:27 -05:00
1a17e06a12
I have rsynced the whole device before associating with a new device and after. The only file that got modified was /etc/oui-tertf/client.db. We intend to have it stored in memory rather than on flash. This should be okay since the kernel also holds the MAC addresses in memory.
17 lines
210 B
Bash
Executable File
17 lines
210 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
. /lib/blue-merle/functions.sh
|
|
|
|
START=81
|
|
STOP=99
|
|
|
|
start() {
|
|
/lib/blue-merle/mac-wipe.sh
|
|
RESET_BSSIDS
|
|
}
|
|
|
|
stop() {
|
|
/lib/blue-merle/mac-wipe.sh
|
|
}
|
|
|