Differences From Artifact [f124b9f8c8]:
- Executable file build/cackey_osx_build/Template_pmbuild/scripts/04pkcs11tokend-post.sh — part of check-in [a8231fc377] at 2016-10-18 18:14:49 on branch trunk — Added CACKey Uninstaller for macOS into the installer package (/usr/local/bin/cackey_osx_uninstall.sh), removed the extra macOS uninstaller script from the build tree, and updated the macOS build script to use the new SHA-256 hash of the external PKCS11.tokend (which now supports SHA-2 (256/384/512)) (user: kvanals, size: 1694) [annotate] [blame] [check-ins using]
To Artifact [41fcf85af4]:
- Executable file build/cackey_osx_build/Template_pmbuild/scripts/04pkcs11tokend-post.sh — part of check-in [ba7e9d7b52] at 2016-10-19 11:41:35 on branch trunk — Updated CACKey Postinstall script to create /usr/local/bin/ if it doesn't already exist before placing uninstall script there. (user: kvanals, size: 1719) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash chmod -R go+rX /Library/Security/tokend/PKCS11.tokend chown -R root:wheel /Library/Security/tokend/PKCS11.tokend # Write Out Uninstaller (For our users' convenience) cat << 'EOF' >> /usr/local/bin/cackey_osx_uninstall.sh #!/bin/bash # Script to remove current and previous releases of CACKey from Mac OS X if [ "`whoami`" != "root" ]; then echo "Please rerun this script with sudo or directly as root." exit 1 | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash chmod -R go+rX /Library/Security/tokend/PKCS11.tokend chown -R root:wheel /Library/Security/tokend/PKCS11.tokend # Write Out Uninstaller (For our users' convenience) mkdir -p /usr/local/bin/ cat << 'EOF' >> /usr/local/bin/cackey_osx_uninstall.sh #!/bin/bash # Script to remove current and previous releases of CACKey from Mac OS X if [ "`whoami`" != "root" ]; then echo "Please rerun this script with sudo or directly as root." exit 1 |
︙ | ︙ |