Updated system checklist and diagnostic scripts
This commit is contained in:
parent
db09236b26
commit
02054a8047
2 changed files with 10 additions and 4 deletions
|
|
@ -29,8 +29,11 @@ if __name__ == '__main__':
|
||||||
'FileNotFoundError': 'File not found',
|
'FileNotFoundError': 'File not found',
|
||||||
},
|
},
|
||||||
'Warning': {}}
|
'Warning': {}}
|
||||||
print_info('Starting System Checklist for Ticket #{}\n'.format(
|
if ENABLED_TICKET_NUMBERS:
|
||||||
ticket_number))
|
print_info('Starting System Checklist for Ticket #{}\n'.format(
|
||||||
|
ticket_number))
|
||||||
|
else:
|
||||||
|
print_info('Starting System Checklist\n')
|
||||||
|
|
||||||
# Configure
|
# Configure
|
||||||
print_info('Configure')
|
print_info('Configure')
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,11 @@ if __name__ == '__main__':
|
||||||
'GenericRepair': 'Repaired',
|
'GenericRepair': 'Repaired',
|
||||||
'UnsupportedOSError': 'Unsupported OS',
|
'UnsupportedOSError': 'Unsupported OS',
|
||||||
}}
|
}}
|
||||||
print_info('Starting System Diagnostics for Ticket #{}\n'.format(
|
if ENABLED_TICKET_NUMBERS:
|
||||||
ticket_number))
|
print_info('Starting System Diagnostics for Ticket #{}\n'.format(
|
||||||
|
ticket_number))
|
||||||
|
else:
|
||||||
|
print_info('Starting System Diagnostics\n')
|
||||||
|
|
||||||
# Sanitize Environment
|
# Sanitize Environment
|
||||||
print_info('Sanitizing Environment')
|
print_info('Sanitizing Environment')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue