check_sys/audit/system/plugins/grub.py
2023-09-11 16:49:30 +02:00

12 lines
210 B
Python

#!/usr/bin/env python3
def grub() -> list:
grub = list()
grub.append({
'description': 'Boot permission',
'filename': '/boot/grub/grub.cfg'
'chmod': 600,
})
return grub