diff options
author | Georg | 2021-09-08 06:17:35 +0200 |
---|---|---|
committer | Georg | 2021-09-08 06:17:35 +0200 |
commit | 14fd32308c27e839409c5444c8a35b20fb3fa778 (patch) | |
tree | 12fb023d00579ad696fe7b09b27449c8347684b6 /scripts | |
parent | 174458d8c7436e82f16742c710706c9f22cfadd6 (diff) | |
download | system-14fd32308c27e839409c5444c8a35b20fb3fa778.tar.gz system-14fd32308c27e839409c5444c8a35b20fb3fa778.tar.bz2 system-14fd32308c27e839409c5444c8a35b20fb3fa778.zip |
Fix Arch Linux `trust` options
Signed-off-by: Georg <georg@lysergic.dev>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/sh/deploy_syscid_ca.sh | 2 |
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 |