Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ks_includes/sdbus_nm.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,11 @@ def add_network(self, ssid, psk, eap_method, identity="", phase2=None):
"uuid": ("s", str(uuid4())),
"type": ("s", "802-11-wireless"),
"interface-name": ("s", self.wlan_device.interface),
# A printer must come back online by itself: with NetworkManager's
# default (4 retries) a pad whose access point is away for two
# minutes at boot gives up and stays offline until someone opens
# this panel again. 0 = retry forever.
"autoconnect-retries": ("i", 0),
},
"802-11-wireless": {
"mode": ("s", "infrastructure"),
Expand Down
Loading