#!/bin/bash

CA_DIR=/etc/pki/ca-trust/source/anchors/

rm $CA_DIR/sandor_laboratories*.pem

wget https://ca.sandorlaboratories.com/certs/sandor_laboratories_intermediate_ca_edward_sandor.crt.pem -O $CA_DIR/sandor_laboratories_intermediate_ca_edward_sandor.crt.pem
wget https://ca.sandorlaboratories.com/certs/sandor_laboratories_root_ca.crt.pem -O $CA_DIR/sandor_laboratories_root_ca.crt.pem

update-ca-trust
