8 lines
154 B
Bash
8 lines
154 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
efi-updatevar -e -f KEK.esl KEK
|
||
|
|
|
||
|
|
for db_type in db dbx; do sudo efi-updatevar -e -f ${db_type}.esl $db_type; done
|
||
|
|
|
||
|
|
efi-updatevar -f PK.auth PK
|