mirror of
https://github.com/koreader/koreader
synced 2024-11-02 15:40:16 +00:00
11 lines
203 B
Bash
11 lines
203 B
Bash
#!/bin/sh
|
|
|
|
RestoreWifi() {
|
|
echo "[$(date)] restore-wifi-async.sh: Restarting WiFi"
|
|
./enable-wifi.sh
|
|
./obtain-ip.sh
|
|
echo "[$(date)] restore-wifi-async.sh: Restarted WiFi"
|
|
}
|
|
|
|
RestoreWifi &
|