This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# The id of the certificate to install. | |
CERT_ID="$1" | |
# The packages whose certificate to replace. | |
CERT_PKGS="${@:2}" | |
# The directory that holds to certificate to import. | |
CERT_IMPORT_DIR="/tmp/certificate/$CERT_ID" |
NewerOlder