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',
|
||||
},
|
||||
'Warning': {}}
|
||||
print_info('Starting System Checklist for Ticket #{}\n'.format(
|
||||
ticket_number))
|
||||
if ENABLED_TICKET_NUMBERS:
|
||||
print_info('Starting System Checklist for Ticket #{}\n'.format(
|
||||
ticket_number))
|
||||
else:
|
||||
print_info('Starting System Checklist\n')
|
||||
|
||||
# Configure
|
||||
print_info('Configure')
|
||||
|
|
|
|||
|
|
@ -31,8 +31,11 @@ if __name__ == '__main__':
|
|||
'GenericRepair': 'Repaired',
|
||||
'UnsupportedOSError': 'Unsupported OS',
|
||||
}}
|
||||
print_info('Starting System Diagnostics for Ticket #{}\n'.format(
|
||||
ticket_number))
|
||||
if ENABLED_TICKET_NUMBERS:
|
||||
print_info('Starting System Diagnostics for Ticket #{}\n'.format(
|
||||
ticket_number))
|
||||
else:
|
||||
print_info('Starting System Diagnostics\n')
|
||||
|
||||
# Sanitize Environment
|
||||
print_info('Sanitizing Environment')
|
||||
|
|
|
|||
Loading…
Reference in a new issue