Lotus Notes 9

bpavlov
Honored Contributor

I'm creating a package for this and the package works if I run it manually in my virtual machine whether through the GUI or through command line. I then tested deploying it via Casper and it deploys fine multiple times. However the issue now is that when I deploy it to an actual user it doesn't install properly.

Some quick background: Apparently Lotus Notes developers like to really separate installations. So there's the main Notes 9 installation, a Notes 9 fix pack, a Sametime Embedded client, a Sametime standalone client, and a Sametime standalone client hot fix. And it all requires Java 6 otherwise nothing will install right.

I take the original installation media and basically call them individually in a postinstall script that calls each installer. The installers are added as resources in Packages. Here's what that looks like:

#!/bin/bash

#Purpose: To install Lotus Notes and Sametime using original installers.

#Working directory for script to reference resources
install_dir=`dirname $0`

#Variables for installation media for Lotus Notes and Sametime. Edit as necessary.
#If additional hotfixes or fixpacks are added over time
#then additional commands may be needed to deal with those installers.

#Name of Lotus Notes 9 DMG and the MPKG it contains
NotesClientDMG="Notes901_MAC_Slipstream_English.dmg"
NotesClientDMGVolume="/Volumes/IBM Notes 9.0.1/"
NotesClientInstaller="IBM Notes Installer.mpkg"

#Name of Lotus Notes 9 FixPack2 DMG and the MPKG it contains
NotesFixPackDMG="notes901FP2_mac.dmg"
NotesFixPackDMGVolume="/Volumes/IBM Notes 9.0.1 FP2/"
NotesFixPackInstaller="IBM Notes Fixpack.mpkg"

#Name of Sametime Internal client TAR and its contents
SametimeInternalTAR="sametime.internal.embedded.addon.macosx_20141020-0745.tar"
SametimeInternalInstaller="sametime-embedded-addon.pkg"

#Name of Sametime Client TAR and its contents
SametimeClientTAR="sametime.internal.macosx_20130911-1333.tar"
SametimeClientInstaller="sametime-connect.mpkg"

#Name of Sametime Client hotfix TAR and its contents
SametimeHotfixTAR="sametime.hotfix.macosx_20131201-0130.tar"
SametimeHotfixInstaller="sametime-connect-hotfix.pkg"


#Commands below will run the original installers from IBM

#Java 6 DMG has been downloaded from http://support.apple.com/downloads/DL1572/en_US/JavaForOSX2014-001.dmg
#Variables for Java installer
Java6DMG="JavaForOSX2014-001.dmg"
Java6DMGVolume="/Volumes/Java for OS X 2014-001/"
Java6Installer="JavaForOSX.pkg"

echo "Java 6 is being installed"
/usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$Java6DMG"
/usr/sbin/installer -dumplog -verbose -pkg "$Java6DMGVolume"/"$Java6Installer" -target "$3" -allowUntrusted
/usr/bin/hdiutil detach "$Java6DMGVolume"

#####Lotus Notes Client#####
#Mount the IBM Lotus Notes Client installer DMG
/usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$NotesClientDMG"

#Run the IBM Lotus Notes Client installer
/usr/sbin/installer -dumplog -verbose -pkg "$NotesClientDMGVolume"/"$NotesClientInstaller" -target "$3" -allowUntrusted
/bin/sleep 80

#Unmount the IBM Lotus Notes Client installer DMG
/usr/bin/hdiutil detach "$NotesClientDMGVolume"
########################

######Sametime Internal client######
#Decompress Sametime Internal client TAR
/usr/bin/tar -xvf $install_dir/"$SametimeInternalTAR"

#Run the IBM Sametime Internal installer
/usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeInternalInstaller" -target "$3" -allowUntrusted
/bin/sleep 45
########################

#####Lotus Notes FixPack######
#Mount the IBM Lotus Notes FixPack DMG
/usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$NotesFixPackDMG"

#Run the IBM Lotus Notes FixPack installer
/usr/sbin/installer -dumplog -verbose -pkg "$NotesFixPackDMGVolume"/"$NotesFixPackInstaller" -target "$3" -allowUntrusted
/bin/sleep 60

#Unmount the IBM Lotus Notes FixPack DMG
/usr/bin/hdiutil detach "$NotesFixPackDMGVolume"
########################

######Sametime Client Standalone######
#Decompress Sametime Client installer TAR
/usr/bin/tar -xvf $install_dir/"$SametimeClientTAR"

#Run the IBM Sametime Client installer
/usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeClientInstaller" -target "$3" -allowUntrusted
/bin/sleep 30
########################

######Sametime Client Standalone Hotfix######
#Decompress Sametime Client Hotfix installer TAR
/usr/bin/tar -xvf $install_dir/"$SametimeHotfixTAR"

#Run the IBM Sametime Client Hotfix installer
/usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeHotfixInstaller" -target "$3" -allowUntrusted
/bin/sleep 30
########################

exit 0

The problem:
Below is a log showing the failures that pop up. From what I can tell it looks like Sametime Embedded is failing, Sametime standalone and the Sametime standalone hot fix (in that specific order).

The first two failures seem to start with the line:
installer: Waiting for other installations to complete….....

That is why I included sleep in between installations. But I'm not sure why that happens.

The third/last failure says:
installer: Cannot install on volume / because it is disabled.

I believe that may be due to the fact that Sametime standalone did not install successfully and therefore the hot fix cannot install to the volume since the software it's supposed to patch isn't on the volume.

Even though it appears that the main Notes application and fix pack install fine based on the logs I'm afraid that it's not because once you go through the configuration the Notes application gets stuck in this "Starting application..." pop up window that eventually just quits Notes. Notes is actually supposed to restart if the installation was successful when I see that pop up window.

Any ideas as to why this process would work sometimes and not others (in all cases the computers are running 10.9.5 and do not already have Lotus Notes so it's a fresh install of the application).

Feb  9 14:18:07 21226 installer[3914]: Referenced component packages (1) trustLevel=202
Feb  9 14:18:08 21226 installer[3914]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
        "file://localhost"
    )
Feb  9 14:18:08 21226 installer[3914]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:18:08 21226 installer[3914]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Library/Application%20Support/JAMF/Waiting%20Room/IBM_Lotus_Notes_v9.0.1_OSX678910_20150202-signed.pkg
Feb  9 14:18:08 21226 installer[3914]: Set authorization level to root for session
Feb  9 14:18:08 21226 runner[3917]: Administrator authorization granted.
Feb  9 14:18:08 21226 installer[3914]: Will use PK session
Feb  9 14:18:08 21226 installer[3914]: Starting installation:
Feb  9 14:18:08 21226 installer[3914]: Configuring volume "Macintosh HD"
Feb  9 14:18:08 21226 installer[3914]: Preparing disk for local booted install.
Feb  9 14:18:08 21226 installer[3914]: Free space on "Macintosh HD": 124.72 GB (124717342720 bytes).
Feb  9 14:18:08 21226 installer[3914]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3914hTEkJx"
Feb  9 14:18:08 21226 installer[3914]: IFPKInstallElement (1 packages)
Feb  9 14:18:08 21226 installer[3914]: Using authorization level of root for IFPKInstallElement
Feb  9 14:18:08 21226 installd[3918]: installd: Starting
Feb  9 14:18:08 21226 installd[3918]: installd: uid=0, euid=0
Feb  9 14:18:08 21226 installd[3918]: PackageKit: Adding client PKInstallDaemonClient pid=3914, uid=0 (/usr/sbin/installer)
Feb  9 14:18:08 21226 installer[3914]: PackageKit: Enqueuing install with boosting
Feb  9 14:18:08 21226 installd[3918]: PackageKit: ----- Begin install -----
Feb  9 14:18:08 21226 installd[3918]: PackageKit: request=PKInstallRequest <1 packages, destination=/>
Feb  9 14:18:08 21226 installd[3918]: PackageKit: packages=(
        "PKLeopardPackage <file://localhost/Library/Application%20Support/JAMF/Waiting%20Room/IBM_Lotus_Notes_v9.0.1_OSX678910_20150202-signed.pkg>"
    )
Feb  9 14:18:13 21226 installd[3918]: PackageKit: Extracting file://localhost/Library/Application%20Support/JAMF/Waiting%20Room/IBM_Lotus_Notes_v9.0.1_OSX678910_20150202-signed.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/BA6D3FD2-5363-4EF5-833F-0E5FBB2EC12C.activeSandbox/Root, uid=0)
Feb  9 14:18:13 21226 installd[3918]: PackageKit: prevent user idle system sleep
Feb  9 14:18:13 21226 installd[3918]: PackageKit: suspending backupd
Feb  9 14:18:13 21226 installd[3918]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/BA6D3FD2-5363-4EF5-833F-0E5FBB2EC12C.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/BA6D3FD2-5363-4EF5-833F-0E5FBB2EC12C.activeSandbox
Feb  9 14:18:13 21226 installd[3918]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/BA6D3FD2-5363-4EF5-833F-0E5FBB2EC12C.activeSandbox/Root (0 items) to /
Feb  9 14:18:13 21226 installd[3918]: PackageKit: Executing script "./postinstall" in /private/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #!/bin/bash -v
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Working directory for script to reference resources
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: install_dir=`dirname $0`
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: dirname $0
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Variables for installation media for Lotus Notes and Sametime. Edit as necessary.
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #If additional hotfixes or fixpacks are added over time
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #then additional commands may be needed to deal with those installers.
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Name of Lotus Notes 9 DMG and the MPKG it contains
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesClientDMG="Notes901_MAC_Slipstream_English.dmg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesClientDMGVolume="/Volumes/IBM Notes 9.0.1/"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesClientInstaller="IBM Notes Installer.mpkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Name of Lotus Notes 9 FixPack2 DMG and the MPKG it contains
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesFixPackDMG="notes901FP2_mac.dmg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesFixPackDMGVolume="/Volumes/IBM Notes 9.0.1 FP2/"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: NotesFixPackInstaller="IBM Notes Fixpack.mpkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Name of Sametime Internal client TAR and its contents
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeInternalTAR="sametime.internal.embedded.addon.macosx_20141020-0745.tar"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeInternalInstaller="sametime-embedded-addon.pkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Name of Sametime Client TAR and its contents
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeClientTAR="sametime.internal.macosx_20130911-1333.tar"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeClientInstaller="sametime-connect.mpkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Name of Sametime Client hotfix TAR and its contents
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeHotfixTAR="sametime.hotfix.macosx_20131201-0130.tar"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: SametimeHotfixInstaller="sametime-connect-hotfix.pkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Commands below will run the original installers from IBM
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: ##Need to check for Java6 as it is required for Lotus Notes to run
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Java 6 DMG has been downloaded from http://support.apple.com/downloads/DL1572/en_US/JavaForOSX2014-001.dmg
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Variables for Java installer
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Java6DMG="JavaForOSX2014-001.dmg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Java6DMGVolume="/Volumes/Java for OS X 2014-001/"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Java6Installer="JavaForOSX.pkg"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: #Java="/usr/bin/java"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: echo "Java 6 is being installed"
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Java 6 is being installed
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$Java6DMG"
Feb  9 14:18:13 21226 install_monitor[3919]: Temporarily excluding: /Applications, /Library, /System, /bin, /private, /sbin, /usr
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Checksumming Driver Descriptor Map (DDM : 0)…
Feb  9 14:18:13 21226 installd[3918]: ./postinstall:      Driver Descriptor Map (DDM : 0): verified   CRC32 $156AE473
Feb  9 14:18:13 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 1)…
Feb  9 14:18:14 21226 installd[3918]: ./postinstall:                     (Apple_Free : 1): verified   CRC32 $00000000
Feb  9 14:18:14 21226 installd[3918]: ./postinstall: Checksumming Apple (Apple_partition_map : 2)…
Feb  9 14:18:14 21226 installd[3918]: ./postinstall:      Apple (Apple_partition_map : 2): verified   CRC32 $39FC8570
Feb  9 14:18:14 21226 installd[3918]: ./postinstall: Checksumming Macintosh (Apple_Driver_ATAPI : 3)…
Feb  9 14:18:15 21226 installd[3918]: ./postinstall:   Macintosh (Apple_Driver_ATAPI : 3): verified   CRC32 $F1E8BA9E
Feb  9 14:18:15 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 4)…
Feb  9 14:18:16 21226 installd[3918]: ./postinstall:                     (Apple_Free : 4): verified   CRC32 $00000000
Feb  9 14:18:16 21226 installd[3918]: ./postinstall: Checksumming disk image (Apple_HFS : 5)…
Feb  9 14:18:16 21226 installd[3918]: ./postinstall:           disk image (Apple_HFS : 5): verified   CRC32 $CE28309C
Feb  9 14:18:16 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 6)…
Feb  9 14:18:17 21226 installd[3918]: ./postinstall:                     (Apple_Free : 6): verified   CRC32 $00000000
Feb  9 14:18:17 21226 installd[3918]: ./postinstall: verified   CRC32 $9FA7EE2B
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: /dev/disk1             Apple_partition_scheme          
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: /dev/disk1s1           Apple_partition_map             
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: /dev/disk1s2           Apple_Driver_ATAPI              
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: /dev/disk1s3           Apple_HFS                       /Volumes/Java for OS X 2014-001
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg "$Java6DMGVolume"/"$Java6Installer" -target "$3" -allowUntrusted
Feb  9 14:18:18 21226 installer[3935]: Product archive /Volumes/Java for OS X 2014-001//JavaForOSX.pkg trustLevel=501
Feb  9 14:18:18 21226 installd[3918]: ./postinstall: Feb  9 14:18:18 21226 installer[3935] <Debug>: Product archive /Volumes/Java for OS X 2014-001//JavaForOSX.pkg trustLevel=501
Feb  9 14:18:19 21226 installer[3935]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:18:19 21226 installer[3935]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg
Feb  9 14:18:19 21226 installer[3935]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg
Feb  9 14:18:19 21226 installer[3935]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:18:19 21226 installer[3935]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg
Feb  9 14:18:19 21226 installer[3935]: Set authorization level to root for session
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: Set authorization level to root for session
Feb  9 14:18:19 21226 runner[3936]: Administrator authorization granted.
Feb  9 14:18:19 21226 installer[3935]: Will use PK session
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Debug>: Will use PK session
Feb  9 14:18:19 21226 installer[3935]: Starting installation:
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Info>: Starting installation:
Feb  9 14:18:19 21226 installer[3935]: Configuring volume "Macintosh HD"
Feb  9 14:18:19 21226 installd[3918]: ./postinstall: Feb  9 14:18:19 21226 installer[3935] <Notice>: Configuring volume "Macintosh HD"
Feb  9 14:18:20 21226 installer[3935]: Preparing disk for local booted install.
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Info>: Preparing disk for local booted install.
Feb  9 14:18:20 21226 installer[3935]: Free space on "Macintosh HD": 123.76 GB (123763527680 bytes).
Feb  9 14:18:20 21226 installer[3935]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3935fzAAd8"
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Notice>: Free space on "Macintosh HD": 123.76 GB (123763527680 bytes).
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Notice>: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3935fzAAd8"
Feb  9 14:18:20 21226 installer[3935]: IFPKInstallElement (4 packages)
Feb  9 14:18:20 21226 installer[3935]: Using authorization level of root for IFPKInstallElement
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Notice>: IFPKInstallElement (4 packages)
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Debug>: Using authorization level of root for IFPKInstallElement
Feb  9 14:18:20 21226 installer[3935]: PackageKit: ----- Begin install -----
Feb  9 14:18:20 21226 installer[3935]: PackageKit: request=PKInstallRequest <4 packages, destination=/>
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Critical>: PackageKit: ----- Begin install -----
Feb  9 14:18:20 21226 installer[3935]: PackageKit: packages=(
        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg>",
        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg>",
        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg>",
        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg>"
    )
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Info>: PackageKit: request=PKInstallRequest <4 packages, destination=/>
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Info>: PackageKit: packages=(
Feb  9 14:18:20 21226 installd[3918]: ./postinstall:        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg>",
Feb  9 14:18:20 21226 installd[3918]: ./postinstall:        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg>",
Feb  9 14:18:20 21226 installd[3918]: ./postinstall:        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg>",
Feb  9 14:18:20 21226 installd[3918]: ./postinstall:        "PKLeopardPackage <file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg>"
Feb  9 14:18:20 21226 installd[3918]: ./postinstall:    )
Feb  9 14:18:20 21226 installer[3935]: PackageKit: Will do receipt-based obsoleting for package identifier com.apple.pkg.JavaEssentials (prefix path=/)
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Info>: PackageKit: Will do receipt-based obsoleting for package identifier com.apple.pkg.JavaEssentials (prefix path=/)
Feb  9 14:18:20 21226 installer[3935]: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: Feb  9 14:18:20 21226 installer[3935] <Info>: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaEssentials.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Package name is Java for OS X 2014-001
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Upgrading at base path /
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Preparing for installation….....
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Preparing the disk….....
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Preparing Java for OS X 2014-001….....
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: installer: Waiting for other installations to complete….....
Feb  9 14:18:20 21226 installer[3935]: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:20 21226 installd[3918]: ./postinstall: #Feb  9 14:18:20 21226 installer[3935] <Info>: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaForOSX.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: installer: Writing files….....
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: installer: Writing files….....
Feb  9 14:18:21 21226 installer[3935]: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: #Feb  9 14:18:21 21226 installer[3935] <Info>: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaSecurity.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:21 21226 installer[3935]: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: Feb  9 14:18:21 21226 installer[3935] <Info>: PackageKit: Extracting file://localhost/Volumes/Java%20for%20OS%20X%202014-001//JavaForOSX.pkg#JavaMDNS.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root, uid=0)
Feb  9 14:18:21 21226 installer[3935]: PackageKit: update_dyld_shared_cache -overlay /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root
Feb  9 14:18:21 21226 installd[3918]: ./postinstall: Feb  9 14:18:21 21226 installer[3935] <Info>: PackageKit: update_dyld_shared_cache -overlay /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root
Feb  9 14:18:22 21226 installd[3918]: ./postinstall: installer: Writing files….....
Feb  9 14:18:22 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:22 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:23 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:23 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:23 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:23 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:24 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:24 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:24 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:24 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:25 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:25 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:25 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:25 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:26 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:26 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:26 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:26 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:27 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:27 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:27 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:27 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:28 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:28 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:28 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:28 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:29 21226 installer[3935]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: #Feb  9 14:18:29 21226 installer[3935] <Info>: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox
Feb  9 14:18:29 21226 installer[3935]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root (4 items) to /
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: Feb  9 14:18:29 21226 installer[3935] <Info>: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/5BC7BB2B-57E7-4A00-9E94-FAEA9572A0B9.activeSandbox/Root (4 items) to /
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: installer: Optimizing system for installed software….....
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: installer: Moving items into place….....
Feb  9 14:18:29 21226 installer[3935]: PackageKit: Executing script "postinstall" in /private/tmp/PKInstallSandbox.GPKBeg/Scripts/com.apple.pkg.JavaEssentials.JqdhVA
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: #Feb  9 14:18:29 21226 installer[3935] <Info>: PackageKit: Executing script "postinstall" in /private/tmp/PKInstallSandbox.GPKBeg/Scripts/com.apple.pkg.JavaEssentials.JqdhVA
Feb  9 14:18:29 21226 admin[3947]: Running Install Scripts . . .
Feb  9 14:18:29 21226 admin[3949]: Begin script: createlinks
Feb  9 14:18:29 21226 admin[3951]: End script: createlinks
Feb  9 14:18:29 21226 admin[3952]: Begin script: deleteObsoleteFiles
Feb  9 14:18:29 21226 admin[3956]: End script: deleteObsoleteFiles
Feb  9 14:18:29 21226 admin[3957]: 2 Install Scripts run.
Feb  9 14:18:29 21226 installer[3935]: PackageKit: Executing script "postinstall" in /private/tmp/PKInstallSandbox.GPKBeg/Scripts/com.apple.pkg.JavaSecurity.6CyEIN
Feb  9 14:18:29 21226 installd[3918]: ./postinstall: Feb  9 14:18:29 21226 installer[3935] <Info>: PackageKit: Executing script "postinstall" in /private/tmp/PKInstallSandbox.GPKBeg/Scripts/com.apple.pkg.JavaSecurity.6CyEIN
Feb  9 14:18:29 21226 admin[3960]: Running Install Scripts . . .
Feb  9 14:18:29 21226 admin[3962]: Begin script: postinstall.py
Feb  9 14:18:30 21226 installer[3935]: postinstall: id: : no such user
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: postinstall: id: : no such user
Feb  9 14:18:30 21226 installer[3935]: postinstall: id: : no such user
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: postinstall: id: : no such user
Feb  9 14:18:30 21226 installer[3935]: postinstall: Couldn't spawn command: load
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: postinstall: Couldn't spawn command: load
Feb  9 14:18:30 21226 admin[3978]: End script: postinstall.py
Feb  9 14:18:30 21226 admin[3979]: 1 Install Scripts run.
Feb  9 14:18:30 21226 installer[3935]: postinstall: 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: postinstall: 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: installer: Moving items into place….....
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Writing receipt for com.apple.pkg.JavaEssentials to /private/var/db/receipts
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: #Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Writing receipt for com.apple.pkg.JavaEssentials to /private/var/db/receipts
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Writing receipt for com.apple.pkg.JavaForMacOSX107 to /private/var/db/receipts
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Writing receipt for com.apple.pkg.JavaForMacOSX107 to /private/var/db/receipts
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Writing receipt for com.apple.pkg.JavaSecurity to /private/var/db/receipts
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Writing receipt for com.apple.pkg.JavaSecurity to /private/var/db/receipts
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Writing receipt for com.apple.pkg.JavaMDNS to /private/var/db/receipts
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Writing receipt for com.apple.pkg.JavaMDNS to /private/var/db/receipts
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Touched bundle /System/Library/CoreServices/Jar Launcher.app
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Touched bundle /System/Library/Java/Support/CoreDeploy.bundle/Contents/Download Java Components.app
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Touched bundle /System/Library/CoreServices/Java Web Start.app
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Touched bundle /System/Library/CoreServices/Jar Launcher.app
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Touched bundle /System/Library/CoreServices/MRTAgent.app
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Touched bundle /System/Library/Java/Support/CoreDeploy.bundle/Contents/Download Java Components.app
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Touched bundle /System/Library/CoreServices/Java Web Start.app
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Touched bundle /System/Library/CoreServices/MRTAgent.app
Feb  9 14:18:30 21226 installer[3935]: Installed "Java for OS X 2014-001" ()
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Notice>: Installed "Java for OS X 2014-001" ()
Feb  9 14:18:30 21226 installer[3935]: PackageKit: ----- End install -----
Feb  9 14:18:30 21226 installer[3935]: PackageKit: 10.2s elapsed install time
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Critical>: PackageKit: ----- End install -----
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: 10.2s elapsed install time
Feb  9 14:18:30 21226 installer[3935]: LSExceptions [0x7fd210640170] loaded
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Debug>: LSExceptions [0x7fd210640170] loaded
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Registered bundle file:///System/Library/CoreServices/Jar%20Launcher.app/ for uid 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Registered bundle file:///System/Library/CoreServices/Jar%20Launcher.app/ for uid 0
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Registered bundle file:///System/Library/Java/Support/CoreDeploy.bundle/Contents/Download%20Java%20Components.app/ for uid 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Registered bundle file:///System/Library/Java/Support/CoreDeploy.bundle/Contents/Download%20Java%20Components.app/ for uid 0
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Registered bundle file:///System/Library/CoreServices/Java%20Web%20Start.app/ for uid 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Registered bundle file:///System/Library/CoreServices/Java%20Web%20Start.app/ for uid 0
Feb  9 14:18:30 21226 installer[3935]: PackageKit: Registered bundle file:///System/Library/CoreServices/MRTAgent.app/ for uid 0
Feb  9 14:18:30 21226 installd[3918]: ./postinstall: Feb  9 14:18:30 21226 installer[3935] <Info>: PackageKit: Registered bundle file:///System/Library/CoreServices/MRTAgent.app/ for uid 0
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer: Writing package receipts….....
Feb  9 14:18:31 21226 installer[3935]: Running install actions
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: #Feb  9 14:18:31 21226 installer[3935] <Notice>: Running install actions
Feb  9 14:18:31 21226 installer[3935]: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3935fzAAd8"
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3935fzAAd8"
Feb  9 14:18:31 21226 installer[3935]: Finalize disk "Macintosh HD"
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: Finalize disk "Macintosh HD"
Feb  9 14:18:31 21226 installer[3935]: Notifying system of updated components
Feb  9 14:18:31 21226 installer[3935]: **** Summary Information ****
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: Notifying system of updated components
Feb  9 14:18:31 21226 installer[3935]:   Operation      Elapsed time
Feb  9 14:18:31 21226 installer[3935]: -----------------------------
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: 
Feb  9 14:18:31 21226 installer[3935]:        disk      0.04 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: **** Summary Information ****
Feb  9 14:18:31 21226 installer[3935]:      script      0.00 seconds
Feb  9 14:18:31 21226 installer[3935]:        zero      0.01 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:   Operation      Elapsed time
Feb  9 14:18:31 21226 installer[3935]:     install      11.10 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: -----------------------------
Feb  9 14:18:31 21226 installer[3935]:     -total-      11.16 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:        disk      0.04 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:      script      0.00 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:        zero      0.01 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:     install      11.10 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>:     -total-      11.16 seconds
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Feb  9 14:18:31 21226 installer[3935] <Notice>: 
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer:     Running installer actions…
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer: Finishing the Installation….....
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer: The software was successfully installed......
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: installer: The upgrade was successful.
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil detach "$Java6DMGVolume"
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: "disk1" unmounted.
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: "disk1" ejected.
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: #####Lotus Notes Client#####
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: #Mount the IBM Lotus Notes Client installer DMG
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$NotesClientDMG"
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Checksumming Protective Master Boot Record (MBR : 0)…
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Protective Master Boot Record (MBR :: verified   CRC32 $A63E199D
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Checksumming GPT Header (Primary GPT Header : 1)…
Feb  9 14:18:31 21226 installd[3918]: ./postinstall:  GPT Header (Primary GPT Header : 1): verified   CRC32 $CBC6DF8A
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Checksumming GPT Partition Data (Primary GPT Table : 2)…
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: GPT Partition Data (Primary GPT Tabl: verified   CRC32 $66E1267D
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 3)…
Feb  9 14:18:31 21226 installd[3918]: ./postinstall:                     (Apple_Free : 3): verified   CRC32 $00000000
Feb  9 14:18:31 21226 installd[3918]: ./postinstall: Checksumming disk image (Apple_HFS : 4)…
Feb  9 14:18:33 21226 installd[3918]: ./postinstall:           disk image (Apple_HFS : 4): verified   CRC32 $2CD20879
Feb  9 14:18:33 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 5)…
Feb  9 14:18:34 21226 installd[3918]: ./postinstall:                     (Apple_Free : 5): verified   CRC32 $00000000
Feb  9 14:18:34 21226 installd[3918]: ./postinstall: Checksumming GPT Partition Data (Backup GPT Table : 6)…
Feb  9 14:18:35 21226 installd[3918]: ./postinstall: GPT Partition Data (Backup GPT Table: verified   CRC32 $66E1267D
Feb  9 14:18:35 21226 installd[3918]: ./postinstall: Checksumming GPT Header (Backup GPT Header : 7)…
Feb  9 14:18:35 21226 installd[3918]: ./postinstall:   GPT Header (Backup GPT Header : 7): verified   CRC32 $540B8024
Feb  9 14:18:35 21226 installd[3918]: ./postinstall: verified   CRC32 $5AF6AB2C
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: /dev/disk1             GUID_partition_scheme           
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: /dev/disk1s1           Apple_HFS                       /Volumes/IBM Notes 9.0.1
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: #Run the IBM Lotus Notes Client installer
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg "$NotesClientDMGVolume"/"$NotesClientInstaller" -target "$3" -allowUntrusted
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:36 21226 installer[4006]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:36 21226 installer[4006]: Package Authoring Warning: IBM Notes Installer.mpkg authorization level is NoAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installer[4006]: Package Authoring Warning: IBM Notes Installer.pkg authorization level is AdminAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installer[4006]: Package Authoring Warning: IBM Notes Installer_English.pkg authorization level is AdminAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Warning>: Package Authoring Warning: IBM Notes Installer.mpkg authorization level is NoAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Warning>: Package Authoring Warning: IBM Notes Installer.pkg authorization level is AdminAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Warning>: Package Authoring Warning: IBM Notes Installer_English.pkg authorization level is AdminAuthorization but was promoted to RootAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: START INSTALLATIONCHECK SCRIPT
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Arguments:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $1: the full path to the install package: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $2: the full path to the install destination: /
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $3: the mountpoint of the destination volume: /
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $4: the root directory for the current System folder: /
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Environment variables:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $SCRIPT_NAME: InstallationCheck
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Running the InstallationCheck scrips
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: IBM Notes Installer.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: IBM Notes Installer_English.pkg
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: InstallationCheck complete
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: This is VolumeCheck script
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $1: the full path to the installation package:/
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $2: the full path to the installation destination:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $3: the mountpoint of the destination volume:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: $4: the root directory for the current system folder:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Starting Volume check script
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Checking Volume:
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Current size is 117983
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: check /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/Contents/Resources/patchkit.ini
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Volume Check for / success
Feb  9 14:18:36 21226 installer[4006]: Product archive /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg trustLevel=202
Feb  9 14:18:36 21226 installd[3918]: ./postinstall: Feb  9 14:18:36 21226 installer[4006] <Debug>: Product archive /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg trustLevel=202
Feb  9 14:18:37 21226 installer[4006]: Referenced component packages (3) trustLevel=202
Feb  9 14:18:37 21226 installd[3918]: ./postinstall: Feb  9 14:18:37 21226 installer[4006] <Debug>: Referenced component packages (3) trustLevel=202
Feb  9 14:18:38 21226 installer[4006]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
        "file://localhost"
    )
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
Feb  9 14:18:38 21226 installd[3918]: ./postinstall:        "file://localhost"
Feb  9 14:18:38 21226 installd[3918]: ./postinstall:    )
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer.pkg
Feb  9 14:18:38 21226 installer[4006]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/IBM%20Notes%20Installer_English.pkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg/Contents/Packages/xpdcoreinstaller.pkg
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg
Feb  9 14:18:38 21226 installer[4006]: Set authorization level to root for session
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: Set authorization level to root for session
Feb  9 14:18:38 21226 runner[4018]: Administrator authorization granted.
Feb  9 14:18:38 21226 installer[4006]: PackageKit: invalid package /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg has no bundle identifier
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Warning>: PackageKit: invalid package /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg has no bundle identifier
Feb  9 14:18:38 21226 installer[4006]: Package file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg not supported by PK
Feb  9 14:18:38 21226 installer[4006]: Will use IF session
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: 2015-02-09 14:18:38.051 installer[4006:7c03] Package /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg uses a deprecated pre-10.2 format (or uses a newer format but is invalid).
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: Package file://localhost/Volumes/IBM%20Notes%209.0.1/IBM%20Notes%20Installer.mpkg not supported by PK
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Debug>: Will use IF session
Feb  9 14:18:38 21226 installer[4006]: Starting installation:
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Info>: Starting installation:
Feb  9 14:18:38 21226 installer[4006]: Configuring volume "Macintosh HD"
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Notice>: Configuring volume "Macintosh HD"
Feb  9 14:18:38 21226 installer[4006]: Preparing disk for local booted install.
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Info>: Preparing disk for local booted install.
Feb  9 14:18:38 21226 installer[4006]: Free space on "Macintosh HD": 123.71 GB (123714625536 bytes).
Feb  9 14:18:38 21226 installer[4006]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.4006tAU0h2"
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Notice>: Free space on "Macintosh HD": 123.71 GB (123714625536 bytes).
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Notice>: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.4006tAU0h2"
Feb  9 14:18:38 21226 installer[4006]: run preflight script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Notice>: run preflight script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: This is preflight script
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: $1: the full path to the installation package:/Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: $2: the full path to the installation destination:/Applications
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: $3: the mountpoint of the destination volume:/
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: $4: the root directory for the current system folder:/
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: Remove patch/hotfix from Receipt folder : /Library/Receipts
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: Begin featurefilter...
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.184 featurefilter[4026:507] pmobject init: /Applications/IBM Notes.app/Contents/MacOS/rcp/deploy/install.xml, /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/../../deploy/install.xml, /tmp/notes/install.xml
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.207 featurefilter[4026:507] Component Select Log: ReadDeployManifest
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.208 featurefilter[4026:507] init manifest end!!
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.208 featurefilter[4026:507] Component Select Log: SyncInstInfoBegin
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.211 featurefilter[4026:507] Component Select Log: WriteInstInfo
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.221 featurefilter[4026:507] Component Select Log: WriteInstInfo_WriteLogComplete
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 2015-02-09 14:18:38.221 featurefilter[4026:507] Install manifest "/Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/../../deploy/install.xml" was polished.
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: FEATUREFILTER: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/Contents/Resources/featurefilter /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/../../deploy/install.xml /Applications/IBM Notes.app/Contents/MacOS/rcp/deploy/install.xml
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: mkdir: /tmp: File exists
Feb  9 14:18:38 21226 runner[4018]: preflight[4021]: 
Feb  9 14:18:38 21226 installer[4006]: run preflight script for Expeditor framework
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: Feb  9 14:18:38 21226 installer[4006] <Notice>: run preflight script for Expeditor framework
Feb  9 14:18:38 21226 installer[4006]: Assembling temporary receipt for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer: Package name is IBM Notes 9.0.1 Social Edition
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer: Installing at base path /
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer: Preparing for installation….....
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer: Preparing the disk….....
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer: Preparing IBM Notes 9.0.1 Social Edition….....
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer:     Running IBM Notes 9.0.1 Social Edition installer script…
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: installer:     Running Expeditor framework installer script…
Feb  9 14:18:38 21226 installd[3918]: ./postinstall: #Feb  9 14:18:38 21226 installer[4006] <Notice>: Assembling temporary receipt for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:41 21226 installer[4006]: Processing IBM Notes 9.0.1 Social Edition:
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:41 21226 installer[4006]:  Determining files to install
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: #Feb  9 14:18:41 21226 installer[4006] <Notice>: Processing IBM Notes 9.0.1 Social Edition:
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Determining files to install
Feb  9 14:18:41 21226 installer[4006]:  It took 0.00 seconds to create the install plan for IBM Notes Installer.
Feb  9 14:18:41 21226 installer[4006]:  Configuring deferred files
Feb  9 14:18:41 21226 installer[4006]:  Assembling temporary receipt
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Debug>:   It took 0.00 seconds to create the install plan for IBM Notes Installer.
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Configuring deferred files
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Assembling temporary receipt
Feb  9 14:18:41 21226 installer[4006]:  Performing pre-extraction actions
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer: Installing IBM Notes 9.0.1 Social Edition….....
Feb  9 14:18:41 21226 installer[4006]:  run preinstall script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     Configuring the installation…
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: #Feb  9 14:18:41 21226 installer[4006] <Notice>:     Performing pre-extraction actions
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  run preinstall script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:41 21226 runner[4018]: preinstall[4054]: this is preinstall script
Feb  9 14:18:41 21226 runner[4018]: preinstall[4054]: 
Feb  9 14:18:41 21226 installer[4006]:  Creating destination path
Feb  9 14:18:41 21226 installer[4006]:  Validating package payload
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Creating destination path
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Validating package payload
Feb  9 14:18:41 21226 installer[4006]:  Starting file extraction
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: Feb  9 14:18:41 21226 installer[4006] <Notice>:  Starting file extraction
Feb  9 14:18:41 21226 pkgExtractor[4055]:   Extracting...
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     Running installer script…
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     Validating package…
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     Writing files…
Feb  9 14:18:41 21226 installd[3918]: ./postinstall: installer:     Writing files…: 0% complete
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: installer:     Writing files…: 21% complete
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: installer:     Writing files…: 38% complete
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:42 21226 installd[3918]: ./postinstall: installer:     Writing files…: 59% complete
Feb  9 14:18:43 21226 pkgExtractor[4055]:   592 of 592 files written in 1.62 seconds.
Feb  9 14:18:43 21226 pkgExtractor[4055]:   241264 kilobytes installed at 145.2 MB/s.
Feb  9 14:18:43 21226 installer[4006]:  run postinstall script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: #Feb  9 14:18:43 21226 installer[4006] <Notice>:     run postinstall script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: This is postinstall script
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: 
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: $1: the full path to the installation package:/Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: $2: the full path to the installation destination:/Applications
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: $3: the mountpoint of the destination volume:/
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: $4: the root directory for the current system folder:/
Feb  9 14:18:43 21226 runner[4018]: postinstall[4057]: 
Feb  9 14:18:43 --- last message repeated 1 time ---
Feb  9 14:18:43 21226 installer[4006]:  Performing post-extraction actions
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Performing post-extraction actions
Feb  9 14:18:43 21226 installer[4006]:  Finishing receipt
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Finishing receipt
Feb  9 14:18:43 21226 installer[4006]: Processing IBM Notes Installer_English:
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Writing files…: 80% complete
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Writing files…: 100% complete
Feb  9 14:18:43 21226 installer[4006]:  Determining files to install
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Running installer script…
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Writing package receipt…
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: #Feb  9 14:18:43 21226 installer[4006] <Notice>: Processing IBM Notes Installer_English:
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Determining files to install
Feb  9 14:18:43 21226 installer[4006]:  It took 0.08 seconds to create the install plan for IBM Notes Installer_English.
Feb  9 14:18:43 21226 installer[4006]:  Configuring deferred files
Feb  9 14:18:43 21226 installer[4006]:  Assembling temporary receipt
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Debug>:   It took 0.08 seconds to create the install plan for IBM Notes Installer_English.
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Configuring deferred files
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Assembling temporary receipt
Feb  9 14:18:43 21226 installer[4006]:  Performing pre-extraction actions
Feb  9 14:18:43 21226 installer[4006]:  Creating destination path
Feb  9 14:18:43 21226 installer[4006]:  Validating package payload
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Performing pre-extraction actions
Feb  9 14:18:43 21226 installer[4006]:  Starting file extraction
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Creating destination path
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Validating package payload
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: Feb  9 14:18:43 21226 installer[4006] <Notice>:  Starting file extraction
Feb  9 14:18:43 21226 pkgExtractor[4060]:   Extracting...
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer: Installing IBM Notes Installer_English….....
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Configuring the installation…
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Validating package…
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Writing files…
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:43 21226 installd[3918]: ./postinstall: installer:     Writing files…: 21% complete
Feb  9 14:18:44 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:44 21226 installd[3918]: ./postinstall: installer:     Writing files…: 30% complete
Feb  9 14:18:44 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:44 21226 installd[3918]: ./postinstall: installer:     Writing files…: 34% complete
Feb  9 14:18:44 21226 installd[3918]: ./postinstall: installer:     Writing files…: 39% complete
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: installer:     Writing files…: 45% complete
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: installer:     Writing files…: 50% complete
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: #
Feb  9 14:18:45 21226 installd[3918]: ./postinstall: installer:     Writing files…: 55% complete
Feb  9 14:18:46 21226 pkgExtractor[4060]:   11299 of 11299 files written in 2.85 seconds.
Feb  9 14:18:46 21226 pkgExtractor[4060]:   167288 kilobytes installed at 57.3 MB/s.
Feb  9 14:18:46 21226 installer[4006]:  Performing post-extraction actions
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: #Feb  9 14:18:46 21226 installer[4006] <Notice>:     Performing post-extraction actions
Feb  9 14:18:46 21226 installer[4006]:  Finishing receipt
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Finishing receipt
Feb  9 14:18:46 21226 installer[4006]: Processing Expeditor framework:
Feb  9 14:18:46 21226 installer[4006]:  Determining files to install
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>: Processing Expeditor framework:
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Determining files to install
Feb  9 14:18:46 21226 installer[4006]:  It took 0.00 seconds to create the install plan for xpdcoreinstaller.
Feb  9 14:18:46 21226 installer[4006]:  Configuring deferred files
Feb  9 14:18:46 21226 installer[4006]:  Assembling temporary receipt
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Debug>:   It took 0.00 seconds to create the install plan for xpdcoreinstaller.
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Configuring deferred files
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Assembling temporary receipt
Feb  9 14:18:46 21226 installer[4006]:  Performing pre-extraction actions
Feb  9 14:18:46 21226 installer[4006]:  Creating destination path
Feb  9 14:18:46 21226 installer[4006]:  Validating package payload
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Performing pre-extraction actions
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Creating destination path
Feb  9 14:18:46 21226 installer[4006]:  Starting file extraction
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Validating package payload
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: Feb  9 14:18:46 21226 installer[4006] <Notice>:  Starting file extraction
Feb  9 14:18:46 21226 pkgExtractor[4063]:   Extracting...
Feb  9 14:18:46 21226 pkgExtractor[4063]:   292 of 292 files written in 0.11 seconds.
Feb  9 14:18:46 21226 pkgExtractor[4063]:   10592 kilobytes installed at 96.9 MB/s.
Feb  9 14:18:46 21226 installer[4006]:  run postinstall script for Expeditor framework
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Writing files…: 87% complete
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Writing package receipt…
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer: Installing Expeditor framework….....
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Configuring the installation…
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Validating package…
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Writing files…
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: installer:     Writing files…: 0% complete
Feb  9 14:18:46 21226 installd[3918]: ./postinstall: #Feb  9 14:18:46 21226 installer[4006] <Notice>:     run postinstall script for Expeditor framework
Feb  9 14:18:48 21226 installer[4006]:  Performing post-extraction actions
Feb  9 14:18:48 21226 installd[3918]: ./postinstall: installer:     Running installer script…
Feb  9 14:18:48 21226 installd[3918]: ./postinstall: #Feb  9 14:18:48 21226 installer[4006] <Notice>:     Performing post-extraction actions
Feb  9 14:18:48 21226 installer[4006]:  Finishing receipt
Feb  9 14:18:48 21226 installd[3918]: ./postinstall: Feb  9 14:18:48 21226 installer[4006] <Notice>:  Finishing receipt
Feb  9 14:18:48 21226 installer[4006]: run postflight script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:48 21226 installd[3918]: ./postinstall: Feb  9 14:18:48 21226 installer[4006] <Notice>: run postflight script for IBM Notes 9.0.1 Social Edition
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: This is postflight script
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: $1: the full path to the installation package: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: $2: the full path to the installation destination:/Applications
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: $3: the mountpoint of the destination volume: /
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: $4: the root directory for the current system folder: /
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: create symbolic link to liblsxbe.dylib for Java Agent
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: refresh the hotfix version number
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: ls: *.lproj: No such file or directory
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: sportlight importer bunder is : /Applications/IBM Notes.app/Contents/MacOS/IBMNotesImporter.mdimporter, deploy folder is :/Library/Spotlight
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: mdimport will not import on behalf of root user.  Exiting.
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: extra folder is : /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/../../deploy/extras, deploy folder is :/Applications/IBM Notes.app/Contents/MacOS/rcp/deploy
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: update Info.plist for ics/webcal/webcals support.
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: update Info.plist for vcf support.
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: update Info.plist for ca/cai support.
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/Contents/Resources/postflight: line 254: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/Contents/Resources/postflight: line 255: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer.pkg/Contents/Resources/postflight: line 256: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: chmod: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: /Applications/IBM Notes.app/Contents/MacOS/rcp/rcplauncher -provManifest -rcpLauncherWait -noSplash -product NULL -provisioningOperation cleanup -data /Library/Application Support/IBM Notes Data/Expeditor//Applications
Feb  9 14:18:48 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:50 --- last message repeated 2 times ---
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: cleanup provision.
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: change the limits of files
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: Modify right for Lotus Notes Data: root:wheel 
Feb  9 14:18:50 21226 runner[4018]: postflight[4069]: 
Feb  9 14:18:50 21226 installd[3918]: ./postinstall: installer:     Writing package receipt…
Feb  9 14:18:50 21226 installd[3918]: ./postinstall: installer: Finishing the Installation….....
Feb  9 14:18:50 21226 installd[3918]: ./postinstall: installer:     Running IBM Notes 9.0.1 Social Edition installer script…
Feb  9 14:18:50 21226 installer[4006]: run postflight script for IBM Notes Installer_English
Feb  9 14:18:50 21226 installd[3918]: ./postinstall: #Feb  9 14:18:50 21226 installer[4006] <Notice>: run postflight script for IBM Notes Installer_English
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: This is postflight script
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: 
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: $1: the full path to the installation package: /Volumes/IBM Notes 9.0.1/IBM Notes Installer.mpkg/Contents/Packages/IBM Notes Installer_English.pkg
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: $2: the full path to the installation destination:/Applications/IBM Notes.app/Contents/Resources
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: $3: the mountpoint of the destination volume: /
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: $4: the root directory for the current system folder: /
Feb  9 14:18:50 21226 runner[4018]: postflight[4111]: 
Feb  9 14:19:09 --- last message repeated 1 time ---
Feb  9 14:19:09 21226 installer[4006]: run postflight script for Expeditor framework
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer:     Running IBM Notes Installer_English installer script…
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: #Feb  9 14:19:09 21226 installer[4006] <Notice>: run postflight script for Expeditor framework
Feb  9 14:19:09 21226 installer[4006]: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.4006tAU0h2"
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.4006tAU0h2"
Feb  9 14:19:09 21226 installer[4006]: Finalize disk "Macintosh HD"
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: Finalize disk "Macintosh HD"
Feb  9 14:19:09 21226 installer[4006]: Notifying system of updated components
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: Notifying system of updated components
Feb  9 14:19:09 21226 installer[4006]: **** Summary Information ****
Feb  9 14:19:09 21226 installer[4006]:   Operation      Elapsed time
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: 
Feb  9 14:19:09 21226 installer[4006]: -----------------------------
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: **** Summary Information ****
Feb  9 14:19:09 21226 installer[4006]:      script      23.13 seconds
Feb  9 14:19:09 21226 installer[4006]:     receipt      3.08 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:   Operation      Elapsed time
Feb  9 14:19:09 21226 installer[4006]:      config      0.09 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: -----------------------------
Feb  9 14:19:09 21226 installer[4006]:        disk      0.05 seconds
Feb  9 14:19:09 21226 installer[4006]:        zero      0.06 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:      script      23.13 seconds
Feb  9 14:19:09 21226 installer[4006]:     install      7.39 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:     receipt      3.08 seconds
Feb  9 14:19:09 21226 installer[4006]:    validate      0.00 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:      config      0.09 seconds
Feb  9 14:19:09 21226 installer[4006]:     extract      4.64 seconds
Feb  9 14:19:09 21226 installer[4006]:     -total-      38.43 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:        disk      0.05 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:        zero      0.06 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:     install      7.39 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:    validate      0.00 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:     extract      4.64 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>:     -total-      38.43 seconds
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: 
Feb  9 14:19:09 21226 installer[4006]: Starting installation:
Feb  9 14:19:09 21226 installer[4006]: Finalizing installation.
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Info>: Starting installation:
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: Finalizing installation.
Feb  9 14:19:09 21226 installer[4006]: Registering applications
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Notice>: Registering applications
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/IBM Notes.app'
Feb  9 14:19:09 21226 installer[4006]: LSExceptions [0x7fe6036ea950] loaded
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Debug>: LSExceptions [0x7fe6036ea950] loaded
Feb  9 14:19:09 21226 installer[4006]: Registered /Applications/IBM Notes.app.
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Info>: Registered /Applications/IBM Notes.app.
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/IBM Notes.app/Contents/MacOS/smmacins.app'
Feb  9 14:19:09 21226 installer[4006]: Registered /Applications/IBM Notes.app/Contents/MacOS/smmacins.app.
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: Feb  9 14:19:09 21226 installer[4006] <Info>: Registered /Applications/IBM Notes.app/Contents/MacOS/smmacins.app.
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support/Collect IBM Notes hang data and exit client.app'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support/Collect IBM Notes hang data and leave client running.app'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/Support'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS/smmacins.app'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app/Contents/MacOS'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/./IBM Notes.app'
Feb  9 14:19:09 21226 runner[4018]: Touched '/Applications/.'
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer:     Running Expeditor framework installer script…
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer:     Finishing the Installation…
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: #
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: #
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer: The software was successfully installed......
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: installer: The install was successful.
Feb  9 14:19:09 21226 installd[3918]: ./postinstall: /bin/sleep 80
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: #Unmount the IBM Lotus Notes Client installer DMG
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil detach "$NotesClientDMGVolume"
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: "disk1" unmounted.
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: "disk1" ejected.
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: ########################
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: ######Sametime Internal client######
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: #Decompress Sametime Internal client TAR
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: /usr/bin/tar -xvf $install_dir/"$SametimeInternalTAR"
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/cs.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/da.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/de.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/el.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/en.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/es.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fi.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fr.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/it.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ja.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ko.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/lt.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/nl.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/no.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pl.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt_BR.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ru.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sl.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sv.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/tr.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh_TW.lproj/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/_CodeSignature/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/deploy/
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x README.txt
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x addonUninstall
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x addonUninstall.sh
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Archive.bom
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Archive.pax.gz
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Info.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/PkgInfo
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/InstallationCheck
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/addonPostinstall
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/addonPreinstall
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/addonUninstall
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/addon_configuration.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/cs.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/cs.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/cs.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/da.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/da.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/da.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/de.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/de.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/de.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/el.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/el.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/el.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/en.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/en.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/en.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/es.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/es.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/es.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fi.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fi.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fi.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fr.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fr.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/fr.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/it.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/it.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/it.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ja.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ja.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ja.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ko.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ko.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ko.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_cs.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_de.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_el.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_en.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_es.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_fr.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_in.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_it.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_ja.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_ko.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_lt.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_pl.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_pt.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_ru.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_sl.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_tr.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_zh.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/LA_zh_TW.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/non_ibm_license.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/license/notices.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/lt.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/lt.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/lt.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/nl.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/nl.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/nl.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/no.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/no.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/no.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/package_version
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pl.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pl.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pl.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/postflight
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/preflight
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt_BR.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt_BR.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/pt_BR.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ru.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ru.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/ru.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sl.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sl.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sl.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sv.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sv.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/sv.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/tr.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/tr.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/tr.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh_TW.lproj/Description.plist
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh_TW.lproj/InstallationCheck.strings
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/Resources/zh_TW.lproj/License.rtf
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/_CodeSignature/CodeDirectory
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/_CodeSignature/CodeRequirements
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/_CodeSignature/CodeResources
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/_CodeSignature/CodeSignature
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/deploy/.keystore.JCEKS.Java_HotSpot(TM)_Client_VM.install
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/deploy/install.addon.xml
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/deploy/plugin_customization.ini
Feb  9 14:20:29 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/deploy/uninstall.addon.xml
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: x sametime-embedded-addon.pkg/Contents/sametime.internal.embedded.addon.macosx.20141020-0745.zip
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: #Run the IBM Sametime Internal installer
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeInternalInstaller" -target "$3" -allowUntrusted
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: START INSTALLATIONCHECK SCRIPT
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: Arguments:
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: $1: the full path to the install package: /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: $2: the full path to the install destination: /
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: $3: the mountpoint of the destination volume: /
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: $4: the root directory for the current System folder: /
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: InstallationCheck complete
Feb  9 14:20:30 21226 installer[15504]: Referenced component packages (1) trustLevel=202
Feb  9 14:20:30 21226 installd[3918]: ./postinstall: Feb  9 14:20:30 21226 installer[15504] <Debug>: Referenced component packages (1) trustLevel=202
Feb  9 14:20:31 21226 installer[15504]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
        "file://localhost"
    )
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
Feb  9 14:20:31 21226 installd[3918]: ./postinstall:        "file://localhost"
Feb  9 14:20:31 21226 installd[3918]: ./postinstall:    )
Feb  9 14:20:31 21226 installer[15504]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:20:31 21226 installer[15504]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg
Feb  9 14:20:31 21226 installer[15504]: Set authorization level to root for session
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: Set authorization level to root for session
Feb  9 14:20:31 21226 runner[15512]: Administrator authorization granted.
Feb  9 14:20:31 21226 installer[15504]: Will use PK session
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: Will use PK session
Feb  9 14:20:31 21226 installer[15504]: Starting installation:
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Info>: Starting installation:
Feb  9 14:20:31 21226 installer[15504]: Configuring volume "Macintosh HD"
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Notice>: Configuring volume "Macintosh HD"
Feb  9 14:20:31 21226 installer[15504]: Preparing disk for local booted install.
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Info>: Preparing disk for local booted install.
Feb  9 14:20:31 21226 installer[15504]: Free space on "Macintosh HD": 123.19 GB (123191476224 bytes).
Feb  9 14:20:31 21226 installer[15504]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.155043zrjDd"
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Notice>: Free space on "Macintosh HD": 123.19 GB (123191476224 bytes).
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Notice>: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.155043zrjDd"
Feb  9 14:20:31 21226 installer[15504]: IFPKInstallElement (1 packages)
Feb  9 14:20:31 21226 installer[15504]: Using authorization level of root for IFPKInstallElement
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Notice>: IFPKInstallElement (1 packages)
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Debug>: Using authorization level of root for IFPKInstallElement
Feb  9 14:20:31 21226 installer[15504]: PackageKit: ----- Begin install -----
Feb  9 14:20:31 21226 installer[15504]: PackageKit: request=PKInstallRequest <1 packages, destination=/>
Feb  9 14:20:31 21226 installer[15504]: PackageKit: packages=(
        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg>"
    )
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Critical>: PackageKit: ----- Begin install -----
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Info>: PackageKit: request=PKInstallRequest <1 packages, destination=/>
Feb  9 14:20:31 21226 installd[3918]: ./postinstall: Feb  9 14:20:31 21226 installer[15504] <Info>: PackageKit: packages=(
Feb  9 14:20:31 21226 installd[3918]: ./postinstall:        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg>"
Feb  9 14:20:31 21226 installd[3918]: ./postinstall:    )
Feb  9 14:20:32 21226 installer[15504]: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox/Root/Applications, uid=0)
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox/Root/Applications, uid=0)
Feb  9 14:20:32 21226 installer[15504]: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources
Feb  9 14:20:32 21226 installer[15504]: ./preflight: Entering preflight
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: ./preflight: Entering preflight
Feb  9 14:20:32 21226 installer[15504]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/4FD661E8-0521-4691-91F0-91D91818B707.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox
Feb  9 14:20:32 21226 installer[15504]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox/Root (1 items) to /
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/4FD661E8-0521-4691-91F0-91D91818B707.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/4FD661E8-0521-4691-91F0-91D91818B707.activeSandbox/Root (1 items) to /
Feb  9 14:20:32 21226 installer[15504]: PackageKit: Executing script "./postflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: Feb  9 14:20:32 21226 installer[15504] <Info>: PackageKit: Executing script "./postflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Package name is IBM Sametime Embedded 9.0
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Installing at base path /
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Preparing for installation….....
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Preparing the disk….....
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Preparing IBM Sametime Embedded 9.0….....
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Waiting for other installations to complete….....
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: #
Feb  9 14:20:32 21226 installd[3918]: ./postinstall: installer: Running package scripts….....
Feb  9 14:20:41 21226 installer[15504]: ./postflight: /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources/postflight: line 16: 15517 Segmentation fault: 11  "$1/Contents/Resources/addonPostinstall" "$1" "$2" "$3" "$4"
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: #Feb  9 14:20:41 21226 installer[15504] <Info>: ./postflight: /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg/Contents/Resources/postflight: line 16: 15517 Segmentation fault: 11  "$1/Contents/Resources/addonPostinstall" "$1" "$2" "$3" "$4"
Feb  9 14:20:41 21226 installer[15504]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “sametime-embedded-addon.pkg”." UserInfo=0x7ff990e53d70 {NSFilePath=./postflight, NSURL=file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg, PKInstallPackageIdentifier=sametime.90.embedded.addon.pkg, NSLocalizedDescription=An error occurred while running scripts from the package “sametime-embedded-addon.pkg”.} {
        NSFilePath = "./postflight";
        NSLocalizedDescription = "An error occurred while running scripts from the package U201csametime-embedded-addon.pkgU201d.";
        NSURL = "file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg";
        PKInstallPackageIdentifier = "sametime.90.embedded.addon.pkg";
    }
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: Feb  9 14:20:41 21226 installer[15504] <Error>: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “sametime-embedded-addon.pkg”." UserInfo=0x7ff990e53d70 {NSFilePath=./postflight, NSURL=file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg, PKInstallPackageIdentifier=sametime.90.embedded.addon.pkg, NSLocalizedDescription=An error occurred while running scripts from the package “sametime-embedded-addon.pkg”.} {
Feb  9 14:20:41 21226 installd[3918]: ./postinstall:        NSFilePath = "./postflight";
Feb  9 14:20:41 21226 installer[15504]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “sametime-embedded-addon.pkg”." UserInfo=0x7ff990e53d70 {NSFilePath=./postflight, NSURL=file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg, PKInstallPackageIdentifier=sametime.90.embedded.addon.pkg, NSLocalizedDescription=An error occurred while running scripts from the package “sametime-embedded-addon.pkg”.}
Feb  9 14:20:41 21226 installd[3918]: ./postinstall:        NSLocalizedDescription = "An error occurred while running scripts from the package U201csametime-embedded-addon.pkgU201d.";
Feb  9 14:20:41 21226 installd[3918]: ./postinstall:        NSURL = "file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg";
Feb  9 14:20:41 21226 installd[3918]: ./postinstall:        PKInstallPackageIdentifier = "sametime.90.embedded.addon.pkg";
Feb  9 14:20:41 21226 installd[3918]: ./postinstall:    }
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: Feb  9 14:20:41 21226 installer[15504] <Debug>: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “sametime-embedded-addon.pkg”." UserInfo=0x7ff990e53d70 {NSFilePath=./postflight, NSURL=file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-embedded-addon.pkg, PKInstallPackageIdentifier=sametime.90.embedded.addon.pkg, NSLocalizedDescription=An error occurred while running scripts from the package “sametime-embedded-addon.pkg”.}
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: installer: Running package scripts….....
Feb  9 14:20:41 --- last message repeated 11 times ---
Feb  9 14:20:41 21226 installer[15504]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: installer: Running package scripts….....
Feb  9 14:20:41 --- last message repeated 5 times ---
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: #Feb  9 14:20:41 21226 installer[15504] <Error>: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: installer: The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)
Feb  9 14:20:41 21226 installd[3918]: ./postinstall: /bin/sleep 45
Feb  9 14:21:26 21226 installd[3918]: ./postinstall: ########################
Feb  9 14:21:26 21226 installd[3918]: ./postinstall: #####Lotus Notes FixPack######
Feb  9 14:21:26 21226 installd[3918]: ./postinstall: #Mount the IBM Lotus Notes FixPack DMG
Feb  9 14:21:26 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil attach -nobrowse -readonly $install_dir/"$NotesFixPackDMG"
Feb  9 14:21:27 21226 installd[3918]: ./postinstall: Checksumming Driver Descriptor Map (DDM : 0)…
Feb  9 14:21:27 21226 installd[3918]: ./postinstall:      Driver Descriptor Map (DDM : 0): verified   CRC32 $A44A30D8
Feb  9 14:21:27 21226 installd[3918]: ./postinstall: Checksumming Apple (Apple_partition_map : 1)…
Feb  9 14:21:27 21226 installd[3918]: ./postinstall:      Apple (Apple_partition_map : 1): verified   CRC32 $C58EAC91
Feb  9 14:21:27 21226 installd[3918]: ./postinstall: Checksumming disk image (Apple_HFS : 2)…
Feb  9 14:21:27 21226 installd[3918]: ./postinstall:           disk image (Apple_HFS : 2): verified   CRC32 $7392BFB8
Feb  9 14:21:27 21226 installd[3918]: ./postinstall: Checksumming  (Apple_Free : 3)…
Feb  9 14:21:28 21226 installd[3918]: ./postinstall:                     (Apple_Free : 3): verified   CRC32 $00000000
Feb  9 14:21:28 21226 installd[3918]: ./postinstall: verified   CRC32 $94300C27
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: /dev/disk1             Apple_partition_scheme          
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: /dev/disk1s1           Apple_partition_map             
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: /dev/disk1s2           Apple_HFS                       /Volumes/IBM Notes 9.0.1 FP2
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: #Run the IBM Lotus Notes FixPack installer
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg "$NotesFixPackDMGVolume"/"$NotesFixPackInstaller" -target "$3" -allowUntrusted
Feb  9 14:21:29 21226 installer[15553]: fileURLForURL = x-disc://IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:29 21226 installer[15553]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:29 21226 installer[15553]: fileURLForURL = x-disc://IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:29 21226 installer[15553]: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: fileURLForURL = x-disc://IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:29 21226 installer[15553]: Package Authoring Warning: IBM Notes Fixpack.mpkg authorization level is NoAuthorization but was promoted to AdminAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: fileURLForURL = file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Warning>: Package Authoring Warning: IBM Notes Fixpack.mpkg authorization level is NoAuthorization but was promoted to AdminAuthorization for compatibility, ensure authorization level is sufficient to install.
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: START INSTALLATIONCHECK SCRIPT
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Arguments:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $1: the full path to the install package: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $2: the full path to the install destination: /
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $3: the mountpoint of the destination volume: /
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $4: the root directory for the current System folder: /
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Environment variables:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $SCRIPT_NAME: InstallationCheck
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Running the InstallationCheck scrips
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: IBM Notes Fixpack.pkg
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: InstallationCheck complete
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: This is VolumeCheck script
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $1: the full path to the installation package:/
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $2: the full path to the installation destination:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $3: the mountpoint of the destination volume:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: $4: the root directory for the current system folder:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Starting Volume check script
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Checking Volume:
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Current size is 117479
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: check /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/patchkit.ini
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Volume check : Required Version string is Release 9.0.1, Current Version string is Release 9.0.1
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Required information:  Required Version=Release 9.0.1
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Installed infomation:  Installed Version=Release 9.0.1
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Volume Check for / success
Feb  9 14:21:29 21226 installer[15553]: Product archive /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg trustLevel=100
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: Product archive /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg trustLevel=100
Feb  9 14:21:29 21226 installer[15553]: Referenced component packages (1) trustLevel=100
Feb  9 14:21:29 21226 installd[3918]: ./postinstall: Feb  9 14:21:29 21226 installer[15553] <Debug>: Referenced component packages (1) trustLevel=100
Feb  9 14:21:30 21226 installer[15553]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
        "file://localhost"
    )
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: -[IFPKGDerivedDocument sortedPackageLocations]: result = (
Feb  9 14:21:30 21226 installd[3918]: ./postinstall:        "file://localhost"
Feb  9 14:21:30 21226 installd[3918]: ./postinstall:    )
Feb  9 14:21:30 21226 installer[15553]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:21:30 21226 installer[15553]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:30 21226 installer[15553]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:21:30 21226 installer[15553]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg/Contents/Packages/IBM%20Notes%20Fixpack.pkg
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg
Feb  9 14:21:30 21226 installer[15553]: Set authorization level to root for session
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: Set authorization level to root for session
Feb  9 14:21:30 21226 runner[15588]: Administrator authorization granted.
Feb  9 14:21:30 21226 installer[15553]: PackageKit: invalid package /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg has no bundle identifier
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Warning>: PackageKit: invalid package /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg has no bundle identifier
Feb  9 14:21:30 21226 installer[15553]: Package file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg not supported by PK
Feb  9 14:21:30 21226 installer[15553]: Will use IF session
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: 2015-02-09 14:21:30.561 installer[15553:7703] Package /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg uses a deprecated pre-10.2 format (or uses a newer format but is invalid).
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: Package file://localhost/Volumes/IBM%20Notes%209.0.1%20FP2/IBM%20Notes%20Fixpack.mpkg not supported by PK
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Debug>: Will use IF session
Feb  9 14:21:30 21226 installer[15553]: Starting installation:
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Info>: Starting installation:
Feb  9 14:21:30 21226 installer[15553]: Configuring volume "Macintosh HD"
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Notice>: Configuring volume "Macintosh HD"
Feb  9 14:21:30 21226 installer[15553]: Preparing disk for local booted install.
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Info>: Preparing disk for local booted install.
Feb  9 14:21:30 21226 installer[15553]: Free space on "Macintosh HD": 123.19 GB (123185766400 bytes).
Feb  9 14:21:30 21226 installer[15553]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15553KmpGhZ"
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Notice>: Free space on "Macintosh HD": 123.19 GB (123185766400 bytes).
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Notice>: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15553KmpGhZ"
Feb  9 14:21:30 21226 installer[15553]: run preflight script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:30 21226 installd[3918]: ./postinstall: Feb  9 14:21:30 21226 installer[15553] <Notice>: run preflight script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: This is preflight script
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: $1: the full path to the installation package:/Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: $2: the full path to the installation destination:/Applications
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: $3: the mountpoint of the destination volume:/
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: $4: the root directory for the current system folder:/
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/patchkit.ini exists, CurrentVersion= 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]:  Archive old files according to patchdependency.nam 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/Support/memcheck /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS/Support
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/libndgts.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/Support/nsd.sh /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS/Support
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/Resources/version.txt /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/Resources
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/libnotes.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:30 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/libnotesws.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/libdxlo.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/liblsxbe.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/Support/NotesDynConfig /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS/Support
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/Notes /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: cp -rf /Applications/IBM Notes.app/Contents/MacOS/libnoteswc.dylib /tmp/IBM Notes Uninstall.9qwN5v/fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: /Applications/IBM Notes.app/Patch Information doesn't exist, create it
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/iriscp
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/patchdependency.nam
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/Resources
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/Resources/version.txt
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/libdxlo.dylib
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/liblsxbe.dylib
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:31 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/libndgts.dylib
Feb  9 14:21:33 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/libnotes.dylib
Feb  9 14:21:33 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:33 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/libnoteswc.dylib
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/libnotesws.dylib
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/License
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/Notes
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/properties
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/Support
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/Support/memcheck
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/Support/NotesDynConfig
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/Support/nsd.sh
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/properties/version
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: a fixpack/IBM Notes.app/Contents/MacOS/License/Fixpack
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: cp -rf /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/DoUninstall.sh /Applications/IBM Notes.app/Patch Information/
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: Begin featurefilter...
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.775 featurefilter[15742:507] pmobject init: /Applications/IBM Notes.app/Contents/MacOS/rcp/deploy/install.xml, /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/../../deploy/install.xml, /tmp/notes/install.xml
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.787 featurefilter[15742:507] reset check box.
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.787 featurefilter[15742:507] init manifest end!!
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.788 featurefilter[15742:507] Component Select Log: SyncInstInfoBegin
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.788 featurefilter[15742:507] Component Select Log: WriteInstInfo
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 2015-02-09 14:21:35.789 featurefilter[15742:507] Component Select Log: WriteInstInfo_CreateLogFailed
Feb  9 14:21:35 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:37 21226 runner[15588]: preflight[15589]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/preflight: line 332: 15742 Segmentation fault: 11  "$script_name" "$install_manifest" "$target_manifest"
Feb  9 14:21:37 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:37 21226 runner[15588]: preflight[15589]: FEATUREFILTER: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/featurefilter /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/../../deploy/install.xml /Applications/IBM Notes.app/Contents/MacOS/rcp/deploy/install.xml
Feb  9 14:21:37 21226 runner[15588]: preflight[15589]: 
Feb  9 14:21:37 21226 installer[15553]: Assembling temporary receipt for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer: Package name is IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer: Installing at base path /
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer: Preparing for installation….....
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer: Preparing the disk….....
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer: Preparing IBM Notes 9.0.1 FP2 fixpack Social Edition….....
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: installer:     Running IBM Notes 9.0.1 FP2 fixpack Social Edition installer script…
Feb  9 14:21:37 21226 installd[3918]: ./postinstall: #Feb  9 14:21:37 21226 installer[15553] <Notice>: Assembling temporary receipt for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 installer[15553]: Processing IBM Notes 9.0.1 FP2 fixpack Social Edition:
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:21:40 21226 installer[15553]:     Determining files to install
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: #Feb  9 14:21:40 21226 installer[15553] <Notice>: Processing IBM Notes 9.0.1 FP2 fixpack Social Edition:
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Determining files to install
Feb  9 14:21:40 21226 installer[15553]:     It took 0.00 seconds to create the install plan for IBM Notes Fixpack.
Feb  9 14:21:40 21226 installer[15553]:     Configuring deferred files
Feb  9 14:21:40 21226 installer[15553]:     Assembling temporary receipt
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Debug>:  It took 0.00 seconds to create the install plan for IBM Notes Fixpack.
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Configuring deferred files
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Assembling temporary receipt
Feb  9 14:21:40 21226 installer[15553]:     Performing pre-extraction actions
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer: Installing IBM Notes 9.0.1 FP2 fixpack Social Edition….....
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     Configuring the installation…
Feb  9 14:21:40 21226 installer[15553]:     run preinstall script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: #Feb  9 14:21:40 21226 installer[15553] <Notice>:    Performing pre-extraction actions
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     run preinstall script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 runner[15588]: preinstall[15745]: this is preinstall script
Feb  9 14:21:40 21226 runner[15588]: preinstall[15745]: 
Feb  9 14:21:40 21226 installer[15553]:     Creating destination path
Feb  9 14:21:40 21226 installer[15553]:     Validating package payload
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Creating destination path
Feb  9 14:21:40 21226 installer[15553]:     Starting file extraction
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Validating package payload
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Starting file extraction
Feb  9 14:21:40 21226 pkgExtractor[15746]:  Extracting...
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     Running installer script…
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     Validating package…
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     Writing files…
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: installer:     Writing files…: 0% complete
Feb  9 14:21:40 21226 pkgExtractor[15746]:  23 of 23 files written in 0.48 seconds.
Feb  9 14:21:40 21226 pkgExtractor[15746]:  68124 kilobytes installed at 138.7 MB/s.
Feb  9 14:21:40 21226 installer[15553]:     run postinstall script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: #Feb  9 14:21:40 21226 installer[15553] <Notice>:    run postinstall script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: This is postinstall script
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: 
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: $1: the full path to the installation package:/Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: $2: the full path to the installation destination:/Applications
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: $3: the mountpoint of the destination volume:/
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: $4: the root directory for the current system folder:/
Feb  9 14:21:40 21226 runner[15588]: postinstall[15747]: 
Feb  9 14:21:40 --- last message repeated 1 time ---
Feb  9 14:21:40 21226 installer[15553]:     Performing post-extraction actions
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Performing post-extraction actions
Feb  9 14:21:40 21226 installer[15553]:     Finishing receipt
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>:     Finishing receipt
Feb  9 14:21:40 21226 installer[15553]: run postflight script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 installd[3918]: ./postinstall: Feb  9 14:21:40 21226 installer[15553] <Notice>: run postflight script for IBM Notes 9.0.1 FP2 fixpack Social Edition
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: This is postflight script
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: $1: the full path to the installation package: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: $2: the full path to the installation destination:/Applications
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: $3: the mountpoint of the destination volume: /
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: $4: the root directory for the current system folder: /
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 --- last message repeated 1 time ---
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: create symbolic link to liblsxbe.dylib for Java Agent
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: refresh the hotfix version number
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: ls: *.lproj: No such file or directory
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: NewVersionString=Release 9.0.1FP2
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: NewVersionDate=August 03, 2014
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: NewShortVersion=9.0.1FP2
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: NewBuildVersion=14215
Feb  9 14:21:40 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:41 21226 runner[15588]: postflight[15749]: sportlight importer bunder is : /Applications/IBM Notes.app/Contents/MacOS/IBMNotesImporter.mdimporter, deploy folder is :/Library/Spotlight
Feb  9 14:21:41 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:41 21226 runner[15588]: postflight[15749]: extra folder is : /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/../../deploy/extras, deploy folder is :/Applications/IBM Notes.app/Contents/MacOS/rcp/deploy
Feb  9 14:21:41 21226 runner[15588]: postflight[15749]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/hotfixPostinstall  /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg /Applications -rcpdata /Library/Application Support/IBM Notes Data/Expeditor/Applications
Feb  9 14:21:41 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  ics has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  vcs has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  webcal has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  webcals has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: update Info.plist for ics/webcal/webcals support.
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  vcf has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: update Info.plist for vcf support.
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  ca has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]:  cai has been registerd, please unregister it first
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: update Info.plist for ca/cai support.
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/postflight: line 266: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/postflight: line 267: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: /Volumes/IBM Notes 9.0.1 FP2/IBM Notes Fixpack.mpkg/Contents/Packages/IBM Notes Fixpack.pkg/Contents/Resources/postflight: line 268: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: chmod: /Applications/IBM Notes.app/Contents/MacOS/Support/IBM Notes Helper.app/Contents/MacOS/helper: No such file or directory
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: /Applications/IBM Notes.app/Contents/MacOS/rcp/rcplauncher -provManifest -rcpLauncherWait -noSplash -product NULL -provisioningOperation cleanup -data /Library/Application Support/IBM Notes Data/Expeditor/Applications
Feb  9 14:21:46 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:47 --- last message repeated 2 times ---
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: cleanup provision.
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: change the limits of files
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: Modify right for Lotus Notes Data: root:wheel 
Feb  9 14:21:47 21226 runner[15588]: postflight[15749]: 
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: installer:     Writing files…: 73% complete
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: installer:     Running installer script…
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: installer:     Writing package receipt…
Feb  9 14:21:47 21226 installer[15553]: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15553KmpGhZ"
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: installer: Finishing the Installation….....
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: installer:     Running IBM Notes 9.0.1 FP2 fixpack Social Edition installer script…
Feb  9 14:21:47 21226 installd[3918]: ./postinstall: #Feb  9 14:21:47 21226 installer[15553] <Notice>: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15553KmpGhZ"
Feb  9 14:21:48 21226 installer[15553]: Finalize disk "Macintosh HD"
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: Finalize disk "Macintosh HD"
Feb  9 14:21:48 21226 installer[15553]: Notifying system of updated components
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: Notifying system of updated components
Feb  9 14:21:48 21226 installer[15553]: **** Summary Information ****
Feb  9 14:21:48 21226 installer[15553]:   Operation      Elapsed time
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: 
Feb  9 14:21:48 21226 installer[15553]: -----------------------------
Feb  9 14:21:48 21226 installer[15553]:      script      13.47 seconds
Feb  9 14:21:48 21226 installer[15553]:     receipt      3.40 seconds
Feb  9 14:21:48 21226 installer[15553]:      config      0.00 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: **** Summary Information ****
Feb  9 14:21:48 21226 installer[15553]:        disk      0.05 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:   Operation      Elapsed time
Feb  9 14:21:48 21226 installer[15553]:        zero      0.08 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: -----------------------------
Feb  9 14:21:48 21226 installer[15553]:     install      0.91 seconds
Feb  9 14:21:48 21226 installer[15553]:    validate      0.00 seconds
Feb  9 14:21:48 21226 installer[15553]:     extract      0.50 seconds
Feb  9 14:21:48 21226 installer[15553]:     -total-      18.42 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:      script      13.47 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:     receipt      3.40 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:      config      0.00 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:        disk      0.05 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:        zero      0.08 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:     install      0.91 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:    validate      0.00 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:     extract      0.50 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>:     -total-      18.42 seconds
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: 
Feb  9 14:21:48 21226 installer[15553]: Starting installation:
Feb  9 14:21:48 21226 installer[15553]: Finalizing installation.
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Info>: Starting installation:
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: Finalizing installation.
Feb  9 14:21:48 21226 installer[15553]: Registering applications
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Notice>: Registering applications
Feb  9 14:21:48 21226 runner[15588]: Touched '/Applications/IBM Notes.app'
Feb  9 14:21:48 21226 installer[15553]: LSExceptions [0x7fc9d0e99e60] loaded
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Debug>: LSExceptions [0x7fc9d0e99e60] loaded
Feb  9 14:21:48 21226 installer[15553]: Registered /Applications/IBM Notes.app.
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: Feb  9 14:21:48 21226 installer[15553] <Info>: Registered /Applications/IBM Notes.app.
Feb  9 14:21:48 21226 runner[15588]: Touched '/Applications/./IBM Notes.app'
Feb  9 14:21:48 21226 runner[15588]: Touched '/Applications/.'
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: installer:     Finishing the Installation…
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: #
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: installer:     
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: #
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: installer: The software was successfully installed......
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: installer: The install was successful.
Feb  9 14:21:48 21226 installd[3918]: ./postinstall: /bin/sleep 60
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: #Unmount the IBM Lotus Notes FixPack DMG
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: /usr/bin/hdiutil detach "$NotesFixPackDMGVolume"
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: "disk1" unmounted.
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: "disk1" ejected.
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: ########################
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: ######Sametime Client Standalone######
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: #Decompress Sametime Client installer TAR
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: /usr/bin/tar -xvf $install_dir/"$SametimeClientTAR"
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/English.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ar.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ca.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/cs.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/da.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/de.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/el.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/es.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/fi.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/fr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/he.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/hr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/hu.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/it.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ja.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/kk.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ko.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/nl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/no.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pt.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pt_BR.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ro.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ru.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sk.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sv.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/th.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/tr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/zh.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/zh_TW.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/English.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/MacOS/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/English.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ar.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ca.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/cs.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/da.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/de.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/el.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/es.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fi.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/he.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hu.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/it.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ja.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/kk.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ko.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/lt.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/nl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/no.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt_BR.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ro.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ru.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sk.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sl.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sv.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/th.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/tr.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh_TW.lproj/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/deploy/
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Archive.bom
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Archive.pax.gz
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Info.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/PkgInfo
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/BundleVersions.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/English.lproj/Description.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/English.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/English.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/English.lproj/sametime-offering.info
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ar.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ca.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/cs.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/da.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/de.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/el.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/es.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/fi.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/fr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/he.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/hr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/hu.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/install_customization.properties
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/installerUtil
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/it.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ja.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/kk.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ko.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/nl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/no.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/package_version
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/postflight
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/preflight
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pt.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/pt_BR.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ro.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/ru.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sametime-offering.bom
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sametime-offering.pax.gz
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sametime-offering.sizes
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sk.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/sv.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/th.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/tr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/zh.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Archive.bom
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Archive.pax.gz
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Info.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/PkgInfo
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/English.lproj/Description.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/install.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/installer
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/osgiagent.properties
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/package_version
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/postflight
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/postinstall
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/postupgrade
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/preflight
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/rcplauncher.properties
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/InstallerSections.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Info.plist
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/MacOS/ProvisionResult
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ProvisionResult.nib
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/InfoPlist.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/Provision.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/English.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/English.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/English.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ar.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ar.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ar.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ca.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ca.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ca.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/cs.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/cs.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/cs.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/da.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/da.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/da.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/de.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/de.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/de.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/el.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/el.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/el.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/es.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/es.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/es.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fi.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fi.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fi.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fr.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fr.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/fr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/he.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/he.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/he.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hr.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hr.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hu.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hu.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/hu.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/it.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/it.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/it.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ja.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ja.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ja.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/kk.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/kk.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/kk.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ko.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ko.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ko.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/lt.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/lt.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/lt.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/nl.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/nl.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/nl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/no.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/no.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/no.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pl.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pl.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt_BR.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt_BR.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/pt_BR.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ro.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ro.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ro.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ru.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ru.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/ru.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sk.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sk.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sk.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sl.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sl.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sl.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sv.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sv.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/sv.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/th.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/th.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/th.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/tr.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/tr.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/tr.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh_TW.lproj/License.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh_TW.lproj/Localizable.strings
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/Resources/zh_TW.lproj/Welcome.rtf
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/deploy/.keystore.JCEKS.Java_HotSpot(TM)_Client_VM.install
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/deploy/install.xml
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/deploy/plugin_customization.ini
Feb  9 14:22:48 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/distribution.dist
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: x sametime-connect.mpkg/Contents/updateSite.zip
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: #Run the IBM Sametime Client installer
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeClientInstaller" -target "$3" -allowUntrusted
Feb  9 14:22:49 21226 installer[15837]: JS: Intel detected
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: JS: Intel detected
Feb  9 14:22:49 21226 installer[15837]: JS: Detected OS X version 10.9.5
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: JS: Detected OS X version 10.9.5
Feb  9 14:22:49 21226 installer[15837]: JS: Checking for 1.5 or 1.6 jdk
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: JS: Checking for 1.5 or 1.6 jdk
Feb  9 14:22:49 21226 installer[15837]: JS: CurrentJDK ProjectName = JavaJDK16
Feb  9 14:22:49 21226 installer[15837]: JS: CurrentJDK 1.6 detected
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: JS: CurrentJDK ProjectName = JavaJDK16
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: JS: CurrentJDK 1.6 detected
Feb  9 14:22:49 21226 installer[15837]: Product archive /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg trustLevel=100
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: Product archive /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg trustLevel=100
Feb  9 14:22:49 21226 installer[15837]: External component packages (2) trustLevel=100
Feb  9 14:22:49 21226 installd[3918]: ./postinstall: Feb  9 14:22:49 21226 installer[15837] <Debug>: External component packages (2) trustLevel=100
Feb  9 14:22:50 21226 installer[15837]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:22:50 21226 installer[15837]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg
Feb  9 14:22:50 21226 installer[15837]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg
Feb  9 14:22:50 21226 installer[15837]: Set authorization level to root for session
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: Set authorization level to root for session
Feb  9 14:22:50 21226 runner[15838]: Administrator authorization granted.
Feb  9 14:22:50 21226 installer[15837]: Will use PK session
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: Will use PK session
Feb  9 14:22:50 21226 installer[15837]: Starting installation:
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: Starting installation:
Feb  9 14:22:50 21226 installer[15837]: Configuring volume "Macintosh HD"
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Notice>: Configuring volume "Macintosh HD"
Feb  9 14:22:50 21226 installer[15837]: Preparing disk for local booted install.
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: Preparing disk for local booted install.
Feb  9 14:22:50 21226 installer[15837]: Free space on "Macintosh HD": 122.97 GB (122969665536 bytes).
Feb  9 14:22:50 21226 installer[15837]: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15837dk7YDO"
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Notice>: Free space on "Macintosh HD": 122.97 GB (122969665536 bytes).
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Notice>: Create temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.15837dk7YDO"
Feb  9 14:22:50 21226 installer[15837]: IFPKInstallElement (2 packages)
Feb  9 14:22:50 21226 installer[15837]: Using authorization level of root for IFPKInstallElement
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Notice>: IFPKInstallElement (2 packages)
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Debug>: Using authorization level of root for IFPKInstallElement
Feb  9 14:22:50 21226 installer[15837]: PackageKit: ----- Begin install -----
Feb  9 14:22:50 21226 installer[15837]: PackageKit: request=PKInstallRequest <2 packages, destination=/>
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Critical>: PackageKit: ----- Begin install -----
Feb  9 14:22:50 21226 installer[15837]: PackageKit: packages=(
        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg>",
        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg>"
    )
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: PackageKit: request=PKInstallRequest <2 packages, destination=/>
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: PackageKit: packages=(
Feb  9 14:22:50 21226 installd[3918]: ./postinstall:        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg>",
Feb  9 14:22:50 21226 installd[3918]: ./postinstall:        "PKJaguarPackage <file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg>"
Feb  9 14:22:50 21226 installd[3918]: ./postinstall:    )
Feb  9 14:22:50 21226 installer[15837]: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root/Applications, uid=0)
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root/Applications, uid=0)
Feb  9 14:22:50 21226 installer[15837]: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root/tmp/xpdinstall/xpdcore, uid=0)
Feb  9 14:22:50 21226 installd[3918]: ./postinstall: Feb  9 14:22:50 21226 installer[15837] <Info>: PackageKit: Extracting file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg (destination=/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root/tmp/xpdinstall/xpdcore, uid=0)
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/sametime-offering.pkg/Contents/Resources
Feb  9 14:22:51 21226 installer[15837]: ./preflight: mkdir: /tmp: File exists
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: ./preflight: mkdir: /tmp: File exists
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: PackageKit: Executing script "./preflight" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/C1BB9335-2BCF-4800-9A0C-D49A83495D99.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root (2 items) to /
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: PackageKit: Using trashcan path /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/PKInstallSandboxTrash/C1BB9335-2BCF-4800-9A0C-D49A83495D99.sandboxTrash for sandbox /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: PackageKit: Shoving /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/PKInstallSandboxManager/C1BB9335-2BCF-4800-9A0C-D49A83495D99.activeSandbox/Root (2 items) to /
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Executing script "./postinstall" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Info>: PackageKit: Executing script "./postinstall" in /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Package name is Sametime
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Installing at base path /
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Preparing for installation….....
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Preparing the disk….....
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Preparing Sametime….....
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Waiting for other installations to complete….....
Feb  9 14:22:51 21226 installer[15837]: ./postinstall: /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/postinstall: line 16: 15863 Segmentation fault: 11  "$1/Contents/Resources/installer" "$1" "$2" "$3" "$4"
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: #Feb  9 14:22:51 21226 installer[15837] <Info>: ./postinstall: /tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/Contents/Packages/xpd.mac-coreinstaller.pkg/Contents/Resources/postinstall: line 16: 15863 Segmentation fault: 11  "$1/Contents/Resources/installer" "$1" "$2" "$3" "$4"
Feb  9 14:22:51 21226 installer[15837]: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”." UserInfo=0x7f9d70728310 {NSFilePath=./postinstall, NSURL=./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/, PKInstallPackageIdentifier=Expeditor framework, NSLocalizedDescription=An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”.} {
        NSFilePath = "./postinstall";
        NSLocalizedDescription = "An error occurred while running scripts from the package U201cxpd.mac-coreinstaller.pkgU201d.";
        NSURL = "./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/";
        PKInstallPackageIdentifier = "Expeditor framework";
    }
Feb  9 14:22:51 21226 installer[15837]: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”." UserInfo=0x7f9d70728310 {NSFilePath=./postinstall, NSURL=./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/, PKInstallPackageIdentifier=Expeditor framework, NSLocalizedDescription=An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”.}
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Error>: PackageKit: Install Failed: Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”." UserInfo=0x7f9d70728310 {NSFilePath=./postinstall, NSURL=./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/, PKInstallPackageIdentifier=Expeditor framework, NSLocalizedDescription=An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”.} {
Feb  9 14:22:51 21226 installd[3918]: ./postinstall:        NSFilePath = "./postinstall";
Feb  9 14:22:51 21226 installd[3918]: ./postinstall:        NSLocalizedDescription = "An error occurred while running scripts from the package U201cxpd.mac-coreinstaller.pkgU201d.";
Feb  9 14:22:51 21226 installd[3918]: ./postinstall:        NSURL = "./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/";
Feb  9 14:22:51 21226 installd[3918]: ./postinstall:        PKInstallPackageIdentifier = "Expeditor framework";
Feb  9 14:22:51 21226 installd[3918]: ./postinstall:    }
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: Feb  9 14:22:51 21226 installer[15837] <Debug>: install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 "An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”." UserInfo=0x7f9d70728310 {NSFilePath=./postinstall, NSURL=./Contents/Packages/xpd.mac-coreinstaller.pkg -- file://localhost/tmp/PKInstallSandbox.q8BX2f/Scripts/com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202.kw9Ws9/sametime-connect.mpkg/, PKInstallPackageIdentifier=Expeditor framework, NSLocalizedDescription=An error occurred while running scripts from the package “xpd.mac-coreinstaller.pkg”.}
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: Running package scripts….....
Feb  9 14:22:51 21226 installer[15837]: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: #Feb  9 14:22:51 21226 installer[15837] <Error>: Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: installer: The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)
Feb  9 14:22:51 21226 installd[3918]: ./postinstall: /bin/sleep 30
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: ########################
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: ######Sametime Client Standalone Hotfix######
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: #Decompress Sametime Client Hotfix installer TAR
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: /usr/bin/tar -xvf $install_dir/"$SametimeHotfixTAR"
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/MacOS/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/English.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ar.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ca.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/cs.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/da.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/de.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/el.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/en.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/es.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fi.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fr.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hr.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hu.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/it.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/iw.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ja.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/kk.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ko.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/lt.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/nl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/no.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt_BR.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ro.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ru.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sk.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sl.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sv.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/th.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/tr.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh_TW.lproj/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/_CodeSignature/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/deploy/
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x hotfixUninstall
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x hotfixUninstall.sh
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Archive.bom
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Archive.pax.gz
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Info.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/PkgInfo
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/InstallerSections.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Info.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/MacOS/ProvisionResult
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/English.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/French.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/German.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/Japanese.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ProvisionResult.nib
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ar.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/cs.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/da.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/el.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/es.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/fi.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/in.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/it.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/iw.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ko.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/lt.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/nl.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/no.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pl.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/pt_BR.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/ru.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sl.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/sv.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/th.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/tr.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_CN.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/InfoPlist.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Plugins/ProvisionResult.bundle/Contents/Resources/zh_TW.lproj/Provision.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/English.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/PathUpdateTool
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/VolumeCheck
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ar.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ar.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ar.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ca.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ca.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ca.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/cs.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/cs.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/cs.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/da.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/da.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/da.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/de.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/de.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/de.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/el.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/el.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/el.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/en.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/en.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/en.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/es.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/es.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/es.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fi.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fi.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fi.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fr.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fr.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/fr.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hotfix.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hotfixPostinstall
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hr.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hr.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hr.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hu.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hu.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/hu.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/it.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/it.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/it.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/iw.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/iw.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/iw.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ja.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ja.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ja.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/kk.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/kk.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/kk.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ko.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ko.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ko.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/lt.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/lt.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/lt.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/nl.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/nl.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/nl.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/no.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/no.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/no.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/package_version
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pl.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pl.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pl.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/postflight
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt_BR.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt_BR.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/pt_BR.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ro.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ro.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ro.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ru.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ru.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/ru.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sk.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sk.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sk.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sl.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sl.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sl.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sv.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sv.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/sv.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/th.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/th.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/th.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/tr.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/tr.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/tr.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh_TW.lproj/Description.plist
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh_TW.lproj/License.rtf
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/Resources/zh_TW.lproj/VolumeCheck.strings
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/_CodeSignature/CodeDirectory
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/_CodeSignature/CodeRequirements
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/_CodeSignature/CodeResources
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/_CodeSignature/CodeSignature
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/deploy/.keystore.JCEKS.Java_HotSpot(TM)_Client_VM.install
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/deploy/install.hotfix.xml
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/deploy/plugin_customization.ini
Feb  9 14:23:21 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/deploy/uninstall.hotfix.xml
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: x sametime-connect-hotfix.pkg/Contents/sametime.hotfix.macosx.20131201-0130.zip
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: #Run the IBM Sametime Client Hotfix installer
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: /usr/sbin/installer -dumplog -verbose -pkg $install_dir/"$SametimeHotfixInstaller" -target "$3" -allowUntrusted
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: installer: Cannot install on volume / because it is disabled.
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: installer: The specified message could not be found for the index 17.
Feb  9 14:23:22 21226 installd[3918]: ./postinstall: /bin/sleep 30
Feb  9 14:23:52 21226 installd[3918]: ./postinstall: ########################
Feb  9 14:23:52 21226 installd[3918]: ./postinstall: exit 0
Feb  9 14:23:52 21226 installd[3918]: PackageKit: Writing receipt for com.vsapartners.pkg.IBMLotusNotes-V9.0.1-OSX678910-20150202 to /private/var/db/receipts
Feb  9 14:23:52 21226 installd[3918]: Installed "IBM_Lotus_Notes_v9.0.1_OSX678910_20150202-signed" ()
Feb  9 14:23:52 21226 install_monitor[3919]: Re-included: /Applications, /Library, /System, /bin, /private, /sbin, /usr
Feb  9 14:23:53 21226 installd[3918]: PackageKit: releasing backupd
Feb  9 14:23:53 21226 installd[3918]: PackageKit: allow user idle system sleep
Feb  9 14:23:53 21226 installd[3918]: PackageKit: ----- End install -----
Feb  9 14:23:53 21226 installd[3918]: PackageKit: 344.9s elapsed install time
Feb  9 14:23:53 21226 installd[3918]: PackageKit: Running idle tasks
Feb  9 14:23:53 21226 installd[3918]: PackageKit: Removing client PKInstallDaemonClient pid=3914, uid=0 (/usr/sbin/installer)
Feb  9 14:23:53 21226 installd[3918]: PackageKit: Done with sandbox removals
Feb  9 14:23:53 21226 installer[3914]: Removing temporary directory "/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//Install.3914hTEkJx"
Feb  9 14:23:53 21226 installer[3914]: Finalize disk "Macintosh HD"
Feb  9 14:23:53 21226 installer[3914]: Notifying system of updated components
Feb  9 14:23:53 21226 installer[3914]: **** Summary Information ****
Feb  9 14:23:53 21226 installer[3914]:   Operation      Elapsed time
Feb  9 14:23:53 21226 installer[3914]: -----------------------------
Feb  9 14:23:53 21226 installer[3914]:        zero      0.01 seconds
Feb  9 14:23:53 21226 installer[3914]:        disk      0.05 seconds
Feb  9 14:23:53 21226 installer[3914]:     install      345.32 seconds
Feb  9 14:23:53 21226 installer[3914]:     -total-      345.38 seconds
13 REPLIES 13

bentoms
Release Candidate Programs Tester

@bpavlov, when is the above being run?

$3 will be the logged in users username if run via the JSS at login or via Self Service.

There is a lot of mounting DMG's to install the PKG's contained within. Could you not add the needed PKG's & have the JSS install the PKG's in order?

bpavlov
Honored Contributor

@bentoms Forgot about $3. They really should use other variables for that kind of stuff. But fortunately this is not being run at login or via Self-Service. But I've pushed out the package using a policy that runs at recurring check-in.

I would use the individual PKGs but the problem is they are not flat packages and I'm trying to get us to use HTTP downloads. My understanding is that we want to use flat packages as much as possible.

rtrouton
Release Candidate Programs Tester

$3 in the context of an installer's script is going to return the target volume. Since the installer is running the script in question, that'll override Casper's alternative use of $3 as a variable for the user's username.

rtrouton
Release Candidate Programs Tester

Can you un-tar the Sametime client installers before adding them to the package, or un-tar them to an alternate location (like in /tmp)? The issue may be that you are trying to write something to the installer package's resource directory when you un-tar and that process is failing.

bentoms
Release Candidate Programs Tester

@rtrouton, I've honestly just avoided $3 for all but the usage Jamf mentions in: https://jamfnation.jamfsoftware.com/article.html?id=146, if this script is being run outside of the packages via an aspect of the suite then $1 may work.

@bpavlov, could you add:

set -e
set -x

To the top of the script, that should expand $3.

Also, maybe force the hdiutil detach commands? Oh & lastly.. Maybe swap $3 for $1?

rtrouton
Release Candidate Programs Tester

@bentoms][/url,

Ordinarily, you'd be correct about Casper's $ variables being the ones governing behavior. However, when it comes to a installer package, it isn't Casper actually running the script and passing the variables. Instead, Casper is calling the installer command line tool and using installer to install the package (and run the package's associated scripts.) Since installer is running the scripts, it's determining the variables' values; not Casper.

Installer assigns the following variables for use with shell scripts:

$0 = Returns the path to the script

$1 = Returns the path to the installer package

$2 = Returns the target location (for example: /Applications)

$3 = Returns the target volume (for example: /Volumes/Macintosh HD)

bentoms
Release Candidate Programs Tester

@rtrouton, cool.. TIL..

I had assumed from the wording:

Any script executed through the Casper Suite will automatically receive the first three variables in the following order:<snip>
$3 = Username

Would still be as even though the script is calling installer, the script is being run via the suite.

ANYWAYS.. if the files are known to be on the local HD then couldn't $3 be swapped for / in the OP's case?

jconte
Contributor II

We are a Lotus Notes shop as well, I am not sure if we are taking the correct approach, but we captured it with all of the fix packs, etc... It is working fine for us. We had to sign eclipse to get the firewall to work properly but we haven't had any issues in Mavericks, Yosemite or upgrading our 8.53 clients.

bpavlov
Honored Contributor

Sorry for not responding to my own thread. Been a bit busy...

@rtrouton
I tried your suggestion about decompressing before adding to the installer. But that didn't make a difference.

I'll try some of the other suggestions and report back.

RobertHammen
Valued Contributor II

At one client, I had to install 9.0.1, then Sametime embedded, then 9.01FP3, then the SHF72 hotfoot to 9.01FP3.

Chaining these installs and changing the priority (to get the sequence right) worked most of the time, except intermittently the Sametime client would fail during execution post-imaging.

I ended up repackaging everything (only need the IBM Notes.app and IBM Notes support folder in /Applications, and the one folder in /etc) and that is working 100%. IBM's installers have been problematic in the past (preinstall scripts puking on not detecting "OS X" instead of "Mac OS" and the common issue of not detecting 10.10.x. They really need to make their installers more enterprise-deployment friendly, considering their product is used by enterprise...

JoeFoerster
New Contributor

I've been packaging Notes on Windows since 4.x. Used to capture it at first but now with ultra-long file/path names in 9 it's impossible. Flexera conks out. So we do essentially as "bpavlov" was doing, stringing them together with command lines. At one point had 43% install failure rate, though that has improved. Sad to see the Mac installers are not much better. :-( But I'm encouraged that some of you were able to capture the install with all the hot/interim fixes and Sametime embedded. One of the big problems we have is users seeing the shortcut and launching Notes after the main installer is done, which then horks the add-ins and hotfixes... Ugly. I'm going to approach it as a capture with Casper first. Any pitfalls or gotchas? I'm new to JAMF. The only Mac Notes install I've done was by hand on my 17" MBP.

bpavlov
Honored Contributor

@JoeFoerster I have about a 95% success rate with the way I've chained up the packages one after the other.

Just be aware that it needs Java to run so just make sure that's installed before anything else. You can get Java 6 from Apple: https://support.apple.com/kb/DL1572?locale=en_US

You could alternatively try to use Java 8 by utilizing this method documented by @rtrouton: https://derflounder.wordpress.com/2015/08/08/modifying-oracles-java-sdk-to-run-java-applications-on-...

ryand
New Contributor

just fyi.... IBM released the x64 version of Notes just recently for El Cap. Version says 9.0.1 but all of component details read 9.0.2... Uses Java 8 instead of the legacy Java 6. Also seems a lot more stable...