From abdffa5c02b84839fc0e1f175351e99a26103480 Mon Sep 17 00:00:00 2001 From: David Ferguson Date: Fri, 29 Jun 2018 20:08:44 +0100 Subject: [PATCH] remove restarting dhcpcd, which seems to break wifi on latest release --- wifisetup/wifiConnect.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wifisetup/wifiConnect.py b/wifisetup/wifiConnect.py index d378e89..6963e02 100644 --- a/wifisetup/wifiConnect.py +++ b/wifisetup/wifiConnect.py @@ -49,10 +49,10 @@ os.system("wpa_cli reconfigure") time.sleep(5) -os.system("systemctl daemon-reload") -time.sleep(5) -os.system("systemctl restart dhcpcd") -time.sleep(5) +#os.system("systemctl daemon-reload") +#time.sleep(5) +#os.system("systemctl restart dhcpcd") +#time.sleep(5) # It's likely that the block following this one will be one that uses the # internet - such as a download file or apt-get block. It takes a few seconds