mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2024-12-18 03:49:03 +01:00
15f01f6d4a
- export dbus for NetworkManager - give it 15 seconds to get the wifi up before checking SSID connectivity.
13 lines
248 B
Bash
Executable File
13 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export DBUS_SYSTEM_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket
|
|
sleep 15
|
|
|
|
iwgetid -r
|
|
|
|
if [ $? -eq 0 ]; then
|
|
printf 'Skipping WiFi Connect\n'
|
|
else
|
|
printf 'Starting WiFi Connect\n'
|
|
/usr/local/sbin/wifi-connect
|
|
fi
|