diff options
author | Christian Breunig <christian@breunig.cc> | 2024-08-26 20:26:18 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-09-16 17:28:50 +0200 |
commit | 07c4fe9ba4511f06bdd302cf37b3059ea86df8c6 (patch) | |
tree | 064802052c54e9356ee7dad0686f627c59ec22c4 /op-mode-definitions | |
parent | 9dfcea3c874d81b03244f40a346694b62637dc5a (diff) | |
download | vyos-1x-07c4fe9ba4511f06bdd302cf37b3059ea86df8c6.tar.gz vyos-1x-07c4fe9ba4511f06bdd302cf37b3059ea86df8c6.zip |
T861: op-mode: add "install mok" CLI command
Deploy VyOS Secure Boot CA MOK (Machine Owner Key) into UEFI variables of
the running machine.
Diffstat (limited to 'op-mode-definitions')
-rw-r--r-- | op-mode-definitions/install-mok.xml.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/op-mode-definitions/install-mok.xml.in b/op-mode-definitions/install-mok.xml.in new file mode 100644 index 000000000..18526a354 --- /dev/null +++ b/op-mode-definitions/install-mok.xml.in @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interfaceDefinition> + <node name="install"> + <children> + <leafNode name="mok"> + <properties> + <help>Install Secure Boot MOK (Machine Owner Key)</help> + </properties> + <command>if test -f /var/lib/shim-signed/mok/MOK.der; then sudo mokutil --ignore-keyring --import /var/lib/shim-signed/mok/MOK.der; else echo "Secure Boot Machine Owner Key not found"; fi</command> + </leafNode> + </children> + </node> +</interfaceDefinition> |