2015-01-13 11:51:18 +00:00
|
|
|
#!/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
|
2017-01-09 14:04:37 +00:00
|
|
|
/usr/bin/cert-sync --btls /etc/ssl/certs/ca-certificates.crt || true
|
2015-01-13 11:51:18 +00:00
|
|
|
|
|
|
|
echo "Done"
|