55 lines
1.2 KiB
Python
55 lines
1.2 KiB
Python
# Wizard Kit: Settings - osTicket
|
|
|
|
OSTICKET = {
|
|
'Color Codes': {
|
|
'Normal': '0',
|
|
'Contact': '1',
|
|
'Diags': '2',
|
|
'Diags FAIL': '3',
|
|
},
|
|
'Database': {
|
|
'Name': 'osticket',
|
|
'User': 'wizardkit',
|
|
'Pass': 'U9bJnF9eamVkfsVw',
|
|
'Port': '3306',
|
|
},
|
|
'Disk Flag': {
|
|
'Name': 'zHDTune',
|
|
'Pass': 1,
|
|
'Fail': 2,
|
|
},
|
|
'SSH': {
|
|
'Host': 'osticket.1201.com',
|
|
'Port': '22',
|
|
'User': 'sql_tunnel',
|
|
},
|
|
'Staff': {
|
|
'ID': '23',
|
|
'Name': 'Wizard Kit',
|
|
},
|
|
'Tables': {
|
|
'Response': 'ost_ticket_response',
|
|
'Ticket': 'ost_ticket',
|
|
},
|
|
}
|
|
TEST_STATIONS = {
|
|
'bender': 'Bender',
|
|
'combine': 'Combine',
|
|
'control': 'Control',
|
|
'cortana': 'Cortana',
|
|
'data': 'Data',
|
|
'glados': 'GLaDOS',
|
|
'locutus': 'Locutus',
|
|
'lore': 'Lore',
|
|
'sex-robot': 'Sex-Robot',
|
|
'shodan': 'Shodan',
|
|
'six': 'Six',
|
|
'skynet': 'Skynet',
|
|
'supremo': 'Supremo',
|
|
'unicron': 'Unicron',
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|
|
|
|
# vim: sts=2 sw=2 ts=2
|