1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/bin/sh if [ $# -ne 2 ]; then echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2 exit 1 fi case $2 in POST-INSTALL) echo "Downloading Mozilla's root certificates and importing into the Mono Trust store..." ${PKG_PREFIX}/bin/mozroots --import --sync ;; esac exit 0