Differences From Artifact [022fa1323e]:
- Executable file build/cackey_osx_build/Template_pmbuild/scripts/04pkcs11tokend-post.sh — part of check-in [a4a018ea4d] at 2015-07-13 20:21:50 on branch trunk — Updated Mac OS X Build to support installation on 10.11 "El Capitan" after external project (TokenD) did the same (user: kvanals, size: 125) [annotate] [blame] [check-ins using] [more...]
To Artifact [a3cf8e39fd]:
- Executable file build/cackey_osx_build/Template_pmbuild/scripts/04pkcs11tokend-post.sh — part of check-in [e2fd50bfda] at 2016-08-19 16:32:51 on branch trunk — Updated CACKey Apple Mac macOS OS X Postinstall and Uninstall scripts to properly disable and enable builtin conflicting OS components when on 10.12 "Sierra" or newer (user: kvanals, size: 307) [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 + 5 +# If on Sierra or newer, disable the pivtoken CryptoTokenKit 6 +if [ "`uname -r | cut -d '.' -f 1`" -ge "16" ]; then 7 + security smartcards token -d com.apple.CryptoTokenKit.pivtoken 8 +fi