WizardKit/.bin/Scripts/settings/main.py

82 lines
2.5 KiB
Python

# Wizard Kit: Settings - Main / Branding
# Features
ENABLED_OPEN_LOGS = False
ENABLED_TICKET_NUMBERS = False
ENABLED_UPLOAD_DATA = False
# 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'
# Live Linux
MPRIME_LIMIT='7' # of minutes to run Prime95 during hw-diags
ROOT_PASSWORD='1201 loves computers!'
TECH_PASSWORD='Sorted1201'
# Server IP addresses
OFFICE_SERVER_IP='10.11.1.20'
QUICKBOOKS_SERVER_IP='10.11.1.20'
# 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
# WiFi
WIFI_SSID='1201 Computers'
WIFI_PASSWORD='12011201'
# 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.11.1.20',
'Name': 'Anaconda',
'Mounted': False,
'Share': 'Backups',
'User': 'cx',
'Pass': 'cx',
'RW-User': 'backup',
'RW-Pass': '1201 loves computers!',
},
]
CRASH_SERVER = {
'Name': "2Shirt's Nextcloud Server",
'Url': 'https://nextcloud.2shirt.work/public.php/webdav/WK_Issues',
'User': 'hgoTCWIL28oGWqJ',
'Pass': '',
}
OFFICE_SERVER = {
'IP': OFFICE_SERVER_IP,
'Name': 'Anaconda',
'Mounted': False,
'Share': 'Office',
'User': 'cx',
'Pass': 'cx',
'RW-User': 'backup',
'RW-Pass': '1201 loves computers!',
}
QUICKBOOKS_SERVER = {
'IP': QUICKBOOKS_SERVER_IP,
'Name': 'Anaconda',
'Mounted': False,
'Share': 'QuickBooks',
'User': 'cx',
'Pass': 'cx',
'RW-User': 'backup',
'RW-Pass': '1201 loves computers!',
}
WINDOWS_SERVER = {
'IP': '10.11.1.20',
'Name': 'Anaconda',
'Mounted': False,
'Share': '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.")