33 lines
689 B
Python
33 lines
689 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
|