From fa96f6ea1353b7632893f41e96312e9e79b85134 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Fri, 17 Jan 2020 16:14:20 -0700 Subject: [PATCH] Fixed known test-station names --- scripts/wk/cfg/osticket.py | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/scripts/wk/cfg/osticket.py b/scripts/wk/cfg/osticket.py index 1ba4fe5a..1592a41b 100644 --- a/scripts/wk/cfg/osticket.py +++ b/scripts/wk/cfg/osticket.py @@ -15,22 +15,23 @@ STAFF = { TEST_STATIONS = { # Domain will be stripped from the FQDN so the initial '.' is included 'Domain': '.1201.com', - # The rest are used to get the test-station name with proper capitalization - 'bender': 'Bender', - 'combine': 'Combine', - 'control': 'Control', - 'cortana': 'Cortana', - 'data': 'Data', - 'deepmind': 'DeepMind', - 'glados': 'GLaDOS', - 'locutus': 'Locutus', - 'lore': 'Lore', - 'sex-robot': 'Sex-Robot', - 'shodan': 'Shodan', - 'six': 'Six', - 'skynet': 'Skynet', - 'supremo': 'Supremo', - 'unicron': 'Unicron', + 'Known Names': { + 'bender': 'Bender', + 'combine': 'Combine', + 'control': 'Control', + 'cortana': 'Cortana', + 'data': 'Data', + 'deepmind': 'DeepMind', + 'glados': 'GLaDOS', + 'locutus': 'Locutus', + 'lore': 'Lore', + 'sex-robot': 'Sex-Robot', + 'shodan': 'Shodan', + 'six': 'Six', + 'skynet': 'Skynet', + 'supremo': 'Supremo', + 'unicron': 'Unicron', + }, } if __name__ == '__main__':