47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
"""Wizard Kit: Config - osTicket"""
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
SQL = {
|
|
'DB': 'osticket',
|
|
'Host': 'osticket.1201.com',
|
|
'Port': '3306',
|
|
'User': 'wizardkit',
|
|
'Pass': 'U9bJnF9eamVkfsVw',
|
|
}
|
|
STAFF = {
|
|
'ID': '23',
|
|
'Name': 'Wizard Kit',
|
|
}
|
|
TEST_STATIONS = {
|
|
# Domain will be stripped from the FQDN so the initial '.' is included
|
|
'Domain': '.1201.com',
|
|
'Known Names': {
|
|
'anaconda': 'Anaconda',
|
|
'ash': 'Ash',
|
|
'bender': 'Bender',
|
|
'combine': 'Combine',
|
|
'control': 'Control',
|
|
'cortana': 'Cortana',
|
|
'daftpunk': 'DaftPunk',
|
|
'data': 'Data',
|
|
'deepmind': 'DeepMind',
|
|
'diamondback': 'Diamondback',
|
|
'glados': 'GLaDOS',
|
|
'hal': 'HAL',
|
|
'locutus': 'Locutus',
|
|
'lore': 'Lore',
|
|
'macos-dev': 'macOS-Dev',
|
|
'neuromancer': 'Neuromancer',
|
|
'sex-robot': 'Sex-Robot',
|
|
'shodan': 'Shodan',
|
|
'six': 'Six',
|
|
'skynet': 'Skynet',
|
|
'smith': 'Smith',
|
|
'sovereign': 'Sovereign',
|
|
'supremo': 'Supremo',
|
|
'unicron': 'Unicron',
|
|
},
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|