Commit 07687dfb by Alexander Popov

Improve printing of the results

parent 2bcd214d
......@@ -343,21 +343,21 @@ def construct_checklist(arch):
def print_checklist(arch):
print('[+] Printing kernel hardening preferences for {}...'.format(arch))
print(' {:<39}|{:^13}|{:^10}|{:^20}'.format(
print('{:^40}|{:^13}|{:^10}|{:^20}'.format(
'option name', 'desired val', 'decision', 'reason'))
print(' ' + '=' * 86)
print('=' * 87)
for opt in checklist:
print(' CONFIG_{:<32}|{:^13}|{:^10}|{:^20}'.format(
print('CONFIG_{:<33}|{:^13}|{:^10}|{:^20}'.format(
opt.name, opt.expected, opt.decision, opt.reason))
print()
def print_check_results():
print(' {:<39}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
print('{:^40}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
'option name', 'desired val', 'decision', 'reason', 'check result'))
print(' ' + '=' * 115)
print('=' * 116)
for opt in checklist:
print(' CONFIG_{:<32}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
print('CONFIG_{:<33}|{:^13}|{:^10}|{:^20}||{:^28}'.format(
opt.name, opt.expected, opt.decision, opt.reason, opt.result))
print()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment