summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg2021-09-08 06:17:35 +0200
committerGeorg2021-09-08 06:17:35 +0200
commit14fd32308c27e839409c5444c8a35b20fb3fa778 (patch)
tree12fb023d00579ad696fe7b09b27449c8347684b6
parent174458d8c7436e82f16742c710706c9f22cfadd6 (diff)
downloadsystem-14fd32308c27e839409c5444c8a35b20fb3fa778.tar.gz
system-14fd32308c27e839409c5444c8a35b20fb3fa778.tar.bz2
system-14fd32308c27e839409c5444c8a35b20fb3fa778.zip
Fix Arch Linux `trust` options
Signed-off-by: Georg <georg@lysergic.dev>
-rwxr-xr-xscripts/sh/deploy_syscid_ca.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/sh/deploy_syscid_ca.sh b/scripts/sh/deploy_syscid_ca.sh
index 0a577ad..dd81d7f 100755
--- a/scripts/sh/deploy_syscid_ca.sh
+++ b/scripts/sh/deploy_syscid_ca.sh
@@ -25,7 +25,7 @@ elif [ "${DISTRIB}" = '"Arch Linux"' ]; then
FP_CRT=$(/usr/bin/openssl x509 -fingerprint -sha512 -noout -in $CRT)
if [ "$FP_CRT" = "$FP_TRUST" ]; then
echo "OK, installing..."
- /usr/bin/trust --store $CRT
+ /usr/bin/trust anchor --store $CRT
rm $CRT
echo "OK"
else