Overview
Comment: | Updated CACKey Postinstall script to create /usr/local/bin/ if it doesn't already exist before placing uninstall script there. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ba7e9d7b52366a8222467e214d307105bb38cfb3 |
User & Date: | kvanals on 2016-10-19 11:41:35 |
Other Links: | manifest | tags |
Context
2016-10-21
| ||
18:08 | Updated TokenD to Version 25 for CACKey on macOS check-in: 0cf1cd0636 user: kvanals tags: trunk | |
2016-10-19
| ||
11:41 | Updated CACKey Postinstall script to create /usr/local/bin/ if it doesn't already exist before placing uninstall script there. check-in: ba7e9d7b52 user: kvanals tags: trunk | |
11:39 | Updated CACKey Build Script to point to new PKCS11.tokend, which includes a fix for SHA-384 support check-in: 4cf37709bf user: kvanals tags: trunk | |
Changes
Modified build/cackey_osx_build/Template_pmbuild/scripts/04pkcs11tokend-post.sh from [f124b9f8c8] to [41fcf85af4].
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