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 1 #!/bin/bash 2 2 chmod -R go+rX /Library/Security/tokend/PKCS11.tokend 3 3 chown -R root:wheel /Library/Security/tokend/PKCS11.tokend 4 4 5 5 # Write Out Uninstaller (For our users' convenience) 6 +mkdir -p /usr/local/bin/ 6 7 cat << 'EOF' >> /usr/local/bin/cackey_osx_uninstall.sh 7 8 #!/bin/bash 8 9 # Script to remove current and previous releases of CACKey from Mac OS X 9 10 10 11 if [ "`whoami`" != "root" ]; then 11 12 echo "Please rerun this script with sudo or directly as root." 12 13 exit 1