mirror of
https://gerrit.hackerspace.pl/hscloud
synced 2025-03-25 05:34:53 +00:00
Nowadays both smartphones and iphones have MAC address randomisation turned on by default. This breaks checkinator because, while the claim works as intended, the address added to the database is the random one and on the next visit the address is different, so the device is categorised as unknown. The simplest way to fix this is by the user to ensure that MAC address is randomised per network, not per-connection (which at least on Android is itself a per-network knob). This change adds a notice to remind the user about this. Signed-off-by: Wojtek Porczyk <woju@hackerspace.pl> Change-Id: Ieee74d09114e6f0479f44429d9828e47c95eb6bd Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1362 Reviewed-by: q3k <q3k@hackerspace.pl> |
||
---|---|---|
.. | ||
at | ||
static | ||
.gitignore | ||
cap.py | ||
config.dist.yaml | ||
dbsetup.sql | ||
default.nix | ||
README.rst | ||
run.py | ||
setup.py | ||
tracker-config.dist.yaml | ||
web-config.dist.yaml | ||
web-secrets.dist.yaml |
`Warsaw Hackerspace`_ presence tracker hosted on https://at.hackersapce.pl. It uses dhcpd.leases file to track MAC adressess of devices connected to hs LAN network. This is running on `customs` machine. Go to ``hswaw/machines/customs.hackerspace.pl`` to see how it is deployed. .. _Warsaw Hackerspace: https://hackerspace.pl Setup ----- .. code:: bash cp config.yaml.dist config.yaml cp web-config.yaml.dist web-config.yaml # edit config files using your favourite editor $EDITOR config.yaml $EDITOR web-config.yaml # create new database file (or copy existing one) sqlite3 at.db < dbsetup.sql # build nix-build ../../default.nix -A hswaw.checkinator Running ------- .. code:: bash # run tracker ./result/bin/checkinator-tracker config.yaml # run web interface # TODO: fix running debug entry point from nix build ./result/bin/checkinator-web-debug