WizardKit/.bin/Scripts/settings/osticket.py
2018-12-27 22:51:38 -07:00

33 lines
687 B
Python

# Wizard Kit: Settings - osTicket
OSTICKET = {
'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',
},
}
if __name__ == '__main__':
print("This file is not meant to be called directly.")
# vim: sts=2 sw=2 ts=2