Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Unified Diff: server/site_linux_router.py

Issue 6030011: Rearrange EAP setup so that it is more parameterizable for other EAP types (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git@master
Patch Set: Whitespace Created 9 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: server/site_linux_router.py
diff --git a/server/site_linux_router.py b/server/site_linux_router.py
index 70707fc2e3fd86684d16d83bfe18b2f38c48fc58..5231a246751fb3e01a7ea72e81a01574233a0c36 100644
--- a/server/site_linux_router.py
+++ b/server/site_linux_router.py
@@ -4,7 +4,7 @@
import logging, re, time
from autotest_lib.client.common_lib import error
-from autotest_lib.server import site_eap_tls
+from autotest_lib.server import site_eap
def isLinuxRouter(router):
router_uname = router.run('uname').stdout
@@ -258,8 +258,8 @@ class LinuxRouter(object):
pass # NB: meaningless for hostapd; ignore
elif k == '-ampdu':
pass # TODO(sleffler) need hostapd support
- elif k == 'eap-tls':
- conf.update(site_eap_tls.router_config(self.router, v))
+ elif k == 'eap':
+ conf.update(site_eap.router_config(self.router, v))
else:
conf[k] = v

Powered by Google App Engine
This is Rietveld 408576698