summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Pfuetzenreuter2021-08-10 18:12:54 +0200
committerGeorg Pfuetzenreuter2021-08-10 18:12:54 +0200
commit46629fd39e4df514ec45970259e81bd53961e9e0 (patch)
tree4e147ebe73e632687aead1680f0c5a2270f6d3f0
parent0b7467ab7456881b804171356f8ab66f0c56489a (diff)
downloadsystem-46629fd39e4df514ec45970259e81bd53961e9e0.tar.gz
system-46629fd39e4df514ec45970259e81bd53961e9e0.tar.bz2
system-46629fd39e4df514ec45970259e81bd53961e9e0.zip
Syscid CA client installer
Signed-off-by: Georg Pfuetzenreuter <georg@lysergic.dev>
-rwxr-xr-xscripts/sh/deploy_syscid_ca.sh39
1 files changed, 39 insertions, 0 deletions
diff --git a/scripts/sh/deploy_syscid_ca.sh b/scripts/sh/deploy_syscid_ca.sh
new file mode 100755
index 0000000..bc60eca
--- /dev/null
+++ b/scripts/sh/deploy_syscid_ca.sh
@@ -0,0 +1,39 @@
+#!/bin/sh
+if [ "$(id -u)" = "0" ]; then
+DISTRIB=$(awk -F= '/^NAME/{print $2}' /etc/os-release)
+echo "Detected $DISTRIB"
+CRT="/tmp/syscid-ca.crt"
+URL="https://web.syscid.com/syscid-ca.crt"
+FP_TRUST="SHA512 Fingerprint=A6:A8:43:7C:B9:1C:DF:07:E5:31:BD:76:11:ED:A6:91:A8:01:AF:21:9E:E7:6E:6B:79:8D:65:72:A3:68:00:9B:A9:1C:69:89:83:18:D7:EE:32:B2:60:C9:2F:54:75:37:46:0A:31:21:C7:F9:DE:07:C3:A3:99:FE:0E:2A:13:B5"
+if [ "${DISTRIB}" = '"openSUSE Leap"' ] || [ "${DISTRIB}" = '"openSUSE Tumbleweed"' ]; then
+ STORE="/etc/pki/trust/anchors/"
+ /usr/bin/curl -kso $CRT $URL
+ FP_CRT=$(/usr/bin/openssl x509 -fingerprint -sha512 -noout -in $CRT)
+ if [ "$FP_CRT" = "$FP_TRUST" ]; then
+ echo "OK, installing..."
+ mv $CRT $STORE
+ /usr/sbin/update-ca-certificates
+ echo "OK"
+ else
+ echo "Fingerpring mismatch. Operation aborted."
+ rm -f $CRT
+ fi
+elif [ "${DISTRIB}" = '"Arch Linux"' ]; then
+ OS="Arch"
+ echo $OS
+ /usr/bin/curl -kso $CRT $URL
+ 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
+ rm $CRT
+ echo "OK"
+ else
+ echo "Fingerpring mismatch. Operation aborted."
+ rm -f $CRT
+else
+ echo "Unsupported operating system."
+fi
+else
+echo "This script must be run with root privileges."
+fi