a9e7cd2c07
Former-commit-id: f5d01a39629b45a97e8d7044cab8aa4808003d6e
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"
|