man/systemd-repart: quote jq expression

Some shells will try to parse this, or expand it, causing an error. Lets
quote it so it's simpler for people.

Signed-off-by: Morten Linderud <morten@linderud.pw>
(cherry picked from commit 3242308ce3)
(cherry picked from commit 32f53e3a78)
This commit is contained in:
Morten Linderud
2026-03-29 14:20:28 +02:00
committed by Luca Boccassi
parent 7c41931222
commit cd5d203a01

View File

@@ -819,7 +819,7 @@ systemd-repart --definitions repart.d \
--copy-source=/tmp/tree/ \
--empty=create --size=600M \
--json=short \
/tmp/img.raw | jq --raw-output0 .[-1].roothash &gt; /tmp/img.roothash
/tmp/img.raw | jq --raw-output0 ".[-1].roothash" &gt; /tmp/img.roothash
openssl smime -sign -in /tmp/img.roothash \
-inkey verity-private-key.pem \