No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
Tanner Collin abb1756d05 Adjust readme hace 5 años
config Save config files hace 5 años
README.md Adjust readme hace 5 años
ip_addr.txt Save config files hace 5 años
requirements.txt Initial commit hace 5 años
thaiwifi.py Adjust timeouts, use ping's return value hace 5 años
thaiwifi.sh Initial commit hace 5 años

README.md

Thaiwifi

Automatically logs into a captive portal

Setup

Python script

$ sudo apt install python3 python3-pip python-virtualenv python3-virtualenv
$ sudo python3 -m pip install --upgrade setuptools
$ git clone https://gogs.tannercollin.com/tanner/thaiwifi.git
$ cd thaiwifi
$ virtualenv -p python3 env
$ . env/bin/activate
$ pip install -r requirements.txt

Supervisor

$ sudo apt install supervisor
$ sudo touch /etc/supervisor/conf.d/thaiwifi.conf
$ sudoedit /etc/supervisor/conf.d/thaiwifi.conf
$ sudo supervisorctl reread
$ sudo supervisorctl update

Add:

[program:thaiwifi]
user=pi
directory=/home/tanner/devel/thaiwifi
command=/bin/bash -c 'source env/bin/activate && python thaiwifi.py'
autostart=true
autorestart=true
stderr_logfile=/var/log/thaiwifi.log
stderr_logfile_maxbytes=1MB
stdout_logfile=/var/log/thaiwifi.log
stdout_logfile_maxbytes=1MB