We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a9de27 + 9ef6df8 commit be118b7Copy full SHA for be118b7
wifi.py
@@ -49,7 +49,8 @@ def start_hostapd(cls):
49
hostapd_type = cls.hostapds.get(adapter)
50
try:
51
print "starting hostapd..."
52
- os.system("start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/" + hostapd_type + " -- /etc/hostapd/" + hostapd_type + " &")
+ #os.system("start-stop-daemon --start --oknodo --quiet --exec /usr/sbin/" + hostapd_type + " -- /etc/hostapd/" + hostapd_type + " &")
53
+ os.system("/usr/sbin/" + hostapd_type + " /etc/hostapd/" + hostapd_type + " -B")
54
55
except subprocess.CalledProcessError as e:
56
print e.output
0 commit comments