mirror of
https://github.com/Bandie/grub2-signing-extension.git
synced 2024-04-01 15:51:26 +00:00
Excluding the EFI directory. Fixes #10
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
# Licence: GNU-GPLv3
|
||||
|
||||
function sign(){
|
||||
for f in `find /boot -type f`
|
||||
for f in $(find /boot -iname "efi" -prune -o -type f -print)
|
||||
do
|
||||
if gpg --detach-sign $f
|
||||
then
|
||||
|
Reference in New Issue
Block a user