Skip to content

Commit

Permalink
Merge pull request #4088 from vyos/mergify/bp/circinus/pr-4087
Browse files Browse the repository at this point in the history
wireless: T6709: fix missing wpa_supplicant configuration (backport #4087)
  • Loading branch information
c-po committed Sep 20, 2024
2 parents 1909f2d + 4af125b commit a66122f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions python/vyos/ifconfig/bond.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,3 +504,6 @@ def update(self, config):

# call base class first
super().update(config)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()
3 changes: 3 additions & 0 deletions python/vyos/ifconfig/ethernet.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,3 +452,6 @@ def update(self, config):

# call base class last
super().update(config)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()
3 changes: 0 additions & 3 deletions python/vyos/ifconfig/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -1813,9 +1813,6 @@ def update(self, config):
value = '1' if (tmp != None) else '0'
self.set_per_client_thread(value)

# enable/disable EAPoL (Extensible Authentication Protocol over Local Area Network)
self.set_eapol()

# Enable/Disable of an interface must always be done at the end of the
# derived class to make use of the ref-counting set_admin_state()
# function. We will only enable the interface if 'up' was called as
Expand Down

0 comments on commit a66122f

Please sign in to comment.