#!/bin/bash

CA_DIR=/usr/local/share/ca-certificates/sandorlaboratories.com

mkdir $CA_DIR

rm $CA_DIR/*

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

update-ca-certificates --fresh
