102 lines
2.9 KiB
Python
102 lines
2.9 KiB
Python
# Wizard Kit: Settings - Main / Branding
|
|
|
|
# Features
|
|
ENABLED_OPEN_LOGS = False
|
|
ENABLED_TICKET_NUMBERS = False
|
|
ENABLED_UPLOAD_DATA = True
|
|
|
|
# STATIC VARIABLES (also used by BASH and BATCH files)
|
|
## NOTE: There are no spaces around the = for easier parsing in BASH and BATCH
|
|
# Main Kit
|
|
ARCHIVE_PASSWORD='Sorted1201'
|
|
KIT_NAME_FULL='1201-WizardKit'
|
|
KIT_NAME_SHORT='1201'
|
|
SUPPORT_MESSAGE='Please let support know by opening an issue on Gogs'
|
|
# imgur
|
|
IMGUR_CLIENT_ID='3d1ee1d38707b85'
|
|
# Live Linux
|
|
ROOT_PASSWORD='1201 loves computers!'
|
|
TECH_PASSWORD='Sorted1201'
|
|
# Root Certificate Authority
|
|
ROOT_CA_NAME='1201_Root_CA.crt'
|
|
# Server IP addresses
|
|
OFFICE_SERVER_IP='10.120.1.15'
|
|
QUICKBOOKS_SERVER_IP='10.120.1.15'
|
|
# Time Zones
|
|
LINUX_TIME_ZONE='America/Los_Angeles' # See 'timedatectl list-timezones' for valid values
|
|
WINDOWS_TIME_ZONE='Pacific Standard Time' # See 'tzutil /l' for valid values
|
|
|
|
# SERVER VARIABLES
|
|
## NOTE: Windows can only use one user per server. This means that if
|
|
## one server serves multiple shares then you have to use the same
|
|
## user/password for all of those shares.
|
|
BACKUP_SERVERS = [
|
|
{ 'IP': '10.120.1.15',
|
|
'Name': 'Anaconda',
|
|
'Mounted': False,
|
|
'Share': 'Backups',
|
|
'User': 'cx',
|
|
'Pass': 'cx',
|
|
'RW-User': 'backup',
|
|
'RW-Pass': '1201 loves computers!',
|
|
},
|
|
# DISABLED due to issues handling mounting a subdir
|
|
#{ 'IP': '10.120.1.23',
|
|
# 'Name': 'Server1201',
|
|
# 'Mounted': False,
|
|
# 'Share': r'Public\TEMP',
|
|
# 'User': 'cx',
|
|
# 'Pass': '',
|
|
# 'RW-User': 'it',
|
|
# 'RW-Pass': 'sorted',
|
|
#},
|
|
]
|
|
BENCHMARK_SERVER = {
|
|
'Name': 'Nextcloud',
|
|
'Short Url': 'https://nextcloud.1201.com/index.php/f/108024',
|
|
'Url': 'https://1201.ddns.net:8001/public.php/webdav/Benchmarks',
|
|
'User': 'QAx28ZgmPwCwGHc',
|
|
'Pass': '',
|
|
}
|
|
CRASH_SERVER = {
|
|
'Name': 'Nextcloud',
|
|
'Url': 'https://1201.ddns.net:8001/public.php/webdav/Issues',
|
|
'User': 'n9Ds76WizNyBw8Y',
|
|
'Pass': '',
|
|
}
|
|
OFFICE_SERVER = {
|
|
'IP': OFFICE_SERVER_IP,
|
|
'Name': 'Anaconda',
|
|
'Mounted': False,
|
|
'Share': r'Public\Office\MS Office',
|
|
'User': 'cx',
|
|
'Pass': 'cx',
|
|
'RW-User': 'backup',
|
|
'RW-Pass': '1201 loves computers!',
|
|
}
|
|
QUICKBOOKS_SERVER = {
|
|
'IP': QUICKBOOKS_SERVER_IP,
|
|
'Name': 'Anaconda',
|
|
'Mounted': False,
|
|
'Share': r'Public\QuickBooks',
|
|
'User': 'cx',
|
|
'Pass': 'cx',
|
|
'RW-User': 'backup',
|
|
'RW-Pass': '1201 loves computers!',
|
|
}
|
|
WINDOWS_SERVER = {
|
|
'IP': '10.120.1.15',
|
|
'Name': 'Anaconda',
|
|
'Mounted': False,
|
|
'Share': r'HH-Proliant\Windows',
|
|
'User': 'cx',
|
|
'Pass': 'cx',
|
|
'RW-User': 'backup',
|
|
'RW-Pass': '1201 loves computers!',
|
|
}
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|
|
|
|
# vim: sts=2 sw=2 ts=2
|