12 lines
210 B
Python
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
|
|
|