Jo Shields de7283d927 Do a BTLS import as well as a classic import in ca-certificates-mono
Former-commit-id: 1da331ed5670b49283ed3824be861e9bcb587082
2017-01-09 14:04:37 +00:00

14 lines
372 B
Bash
Executable File

#!/bin/sh
set -e
echo "Updating Mono key store"
# always return true, even if the tool blows up for some reason.
# we don't want to mess with users at install-time. failure here
# isn't really fatal anyway, just inconvenient
/usr/bin/cert-sync /etc/ssl/certs/ca-certificates.crt || true
/usr/bin/cert-sync --btls /etc/ssl/certs/ca-certificates.crt || true
echo "Done"