From 6b9e9fc683f0379016601a6d8f6738193f6bf8af Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Mon, 24 Jan 2022 12:03:33 -0300 Subject: [PATCH] trust: add page (#7699) --- pages/linux/trust.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/trust.md diff --git a/pages/linux/trust.md b/pages/linux/trust.md new file mode 100644 index 000000000..806d0de5a --- /dev/null +++ b/pages/linux/trust.md @@ -0,0 +1,28 @@ +# trust + +> Tool for operating on the trust policy store. +> More information: . + +- List trust policy store items: + +`trust list` + +- List information about specific items in the trust policy store: + +`trust list --filter={{blocklist|ca-anchors|certificates|trust-policy}}` + +- Store a specific trust anchor in the trust policy store: + +`trust anchor {{path/to/certificate.crt}}` + +- Remove a specific anchor from the trust policy store: + +`trust anchor --remove {{path/to/certificate.crt}}` + +- Extract trust policy from the shared trust policy store: + +`trust extract --format=x509-directory --filter=ca-anchors {{path/to/directory}}` + +- Display help for a subcommand: + +`trust {{subcommand}} --help`