a2e90b922d
This reverts commit de7283d9271303ba14ec165b940eee673079747d [formerly 1da331ed5670b49283ed3824be861e9bcb587082]. Former-commit-id: bfe7473e4ae903a82c567ee3463511dcf6e438ed
13 lines
303 B
Bash
Executable File
13 lines
303 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
|
|
|
|
echo "Done"
|