Forum Replies Created

Viewing 15 posts - 16 through 30 (of 50 total)
  • Author
    Posts
  • in reply to: CS5 + NEW AdobeEnterpriseDeployment + InstaDMG #378679
    vogtstev
    Participant

    From preinstall script I wonder if this could be the problem:

    –installDirPath=”$2″

    Not sure what it should be though. I’m assuming $3 won’t work in this case.

    in reply to: CS5 + NEW AdobeEnterpriseDeployment + InstaDMG #378678
    vogtstev
    Participant

    Adobe preinstall script:

    #!/bin/sh

    echo “AAMEE Installer : preinstall launched…”

    oldWD=`pwd`

    parentDir=`dirname “$0″`
    cd “$parentDir”
    WD=`pwd`

    cd “$oldWD”

    if [ -f “$WD/AdobeDeploymentManager” ]
    then
    echo “AAMEE Installer : Working directory is $WD”
    else
    echo “AAMEE Installer : Working directory is not valid $WD”
    echo “AAMEE Installer : Trying to find relative path from pkg”
    WD=”$1/Contents/Resources”
    if [ -f “$WD/AdobeDeploymentManager” ]
    then
    echo “AAMEE Installer : Working directory is $WD”
    else
    echo “AAMEE Installer : Working directory is not valid $WD”
    echo “AAMEE Installer : AdobeDeploymentManager is not present in the working directory. Corrupted Installer. ”
    exit -1
    fi
    fi

    echo “AAMEE Installer : Launching AdobeDeploymentManager…”
    “$WD/AdobeDeploymentManager” –optXMLPath=”$WD/optionXML.xml” –setupBasePath=”$WD/” –installDirPath=”$2″ –mode=install
    ADMExitCode=$?

    echo “AAMEE Installer : Exit code of AdobeDeploymentManager is ($ADMExitCode)”
    echo “AAMEE Installer : Exit …”
    exit $ADMExitCode

    in reply to: CS5 + NEW AdobeEnterpriseDeployment + InstaDMG #378677
    vogtstev
    Participant

    Adobe InstallCheck Script:

    #!/bin/sh

    if [ -f “/System/Library/CoreServices/SystemVersion.plist” ]
    then
    OS_VERSION=`/usr/bin/defaults read /System/Library/CoreServices/SystemVersion ProductVersion`

    else
    if [ -f “/System/Library/CoreServices/ServerVersion.plist” ]
    then
    OS_VERSION=`/usr/bin/defaults read /System/Library/CoreServices/ServerVersion ProductVersion`
    else
    #err will be of the type “An error was encountered while running the InstallationCheck tool for package .”
    exit 100
    fi
    fi

    OS_MAJOR_VERSION=`echo $OS_VERSION | cut -f1 -d’.’`
    OS_MINOR_VERSION=`echo $OS_VERSION | cut -f2 -d’.’`
    OS_PATCH_VERSION=`echo $OS_VERSION | cut -f3 -d’.’`

    if [ “$OS_MAJOR_VERSION” -lt “10” ] || [[ “$OS_MAJOR_VERSION” -eq “10” && “$OS_MINOR_VERSION” -lt “5” ]]
    then
    #err will be of the type “The software cannot be installed on this computer”
    exit 97
    fi

    SYS_TYPE=`sysctl -n hw.cputype`
    if [ “$SYS_TYPE” -ne “7” ] && [ “$SYS_TYPE” -ne “71” ]
    then
    #err will be of the type “The software cannot be installed on this computer”
    exit 97
    fi

    exit 0

    in reply to: CS5 + NEW AdobeEnterpriseDeployment + InstaDMG #378676
    vogtstev
    Participant

    Adobe Photoshop Installation section of debug log (Same happens for all CS products that I’ve tried):

    Working on folder 07 (17:33:58)
    Installing photoshopcs5_Install.pkg from ./InstallerFiles/CustomPKG/07 (07)
    Package name is Adobe Setup
    Installing at base path /private/tmp/InstaDMG_temp_folder.D9bsiJ/mount_point.6VV8Tc
    PHASE:Preparing for installation…
    -[IFPKGDerivedDocument sortedPackageLocations]: result = (
    “file://localhost”
    )
    -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/InstaDMG/./InstallerFiles/CustomPKG/07/photoshopcs5_Install.pkg
    Will use PK session
    Starting installation:
    PHASE:Preparing the disk…
    Configuring volume “Macintosh HD”
    Preparing disk for local booted install.
    Free space on “Macintosh HD”: 307.77 GB (307771772928 bytes).
    Create temporary directory “/var/folders/zz/zzzivhrRnAmviuee+++++++++++/-Tmp-//Install.57068fYGJEb”
    PHASE:Preparing Adobe Setup…
    IFPKInstallElement (1 packages)
    PHASE:Waiting for other installations to complete…
    PackageKit: —– Begin install —–
    PackageKit: request=PKInstallRequest <1 packages, destination=/tmp/InstaDMG_temp_folder.D9bsiJ/mount_point.6VV8Tc>
    PackageKit: packages=(
    “PKJaguarPackage
    )
    PHASE:Configuring the installation…
    STATUS:
    PackageKit: Extracting /InstaDMG/InstallerFiles/CustomPKG/07/photoshopcs5_Install.pkg/Contents/Archive.pax.gz (destination=/private/tmp/InstaDMG_temp_folder.D9bsiJ/mount_point.6VV8Tc/.PKInstallSandbox-tmp/Root, uid=0)
    PHASE:Writing files…
    %7.221037
    PackageKit: Executing script “./preinstall” in /InstaDMG/InstallerFiles/InstaUp2DatePackages/photoshopcs5_Install.pkg/Contents/Resources
    ./preinstall: AAMEE Installer : preinstall launched…
    ./preinstall: AAMEE Installer : Working directory is /InstaDMG/InstallerFiles/InstaUp2DatePackages/photoshopcs5_Install.pkg/Contents/Resources
    ./preinstall: AAMEE Installer : Launching AdobeDeploymentManager…
    PHASE:Running package scripts…
    %13.801331
    PHASE:Running package scripts…
    %19.754815
    ./preinstall: Starting Installer…
    ./preinstall: In Silent mode.
    PHASE:Running package scripts…
    %24.629150
    PHASE:Running package scripts…
    %28.930575
    PHASE:Running package scripts…
    %73.873952
    PHASE:Running package scripts…
    %74.351350
    ./preinstall: Exiting Installer with Code: 0
    ./preinstall: Begin Adobe Setup
    ./preinstall: UI mode: Silent
    PHASE:Running package scripts…
    %74.810281
    PHASE:Running package scripts…
    %75.251380
    [b]./preinstall: Error : INSTALLDIR check failed
    ./preinstall: Exit Code: 22
    ./preinstall: AAMEE Installer : Exit code of AdobeDeploymentManager is (127)
    ./preinstall: AAMEE Installer : Exit … [/b]
    PackageKit: Install Failed: PKG: pre-install scripts for “com.adobe.Enterprise.install.E420041C-1497-41F2-BB5B-1DE9A7007470”
    Error Domain=PKInstallErrorDomain Code=112 UserInfo=0x105005210 “An error occurred while running scripts from the package “photoshopcs5_Install.pkg”.” {
    NSFilePath = “./preinstall”;
    NSLocalizedDescription = “An error occurred while running scripts from the package U201cphotoshopcs5_Install.pkgU201d.”;
    NSURL = “file://localhost/InstaDMG/./InstallerFiles/CustomPKG/07/photoshopcs5_Install.pkg”;
    PKInstallPackageIdentifier = “com.adobe.Enterprise.install.E420041C-1497-41F2-BB5B-1DE9A7007470”;
    }
    install:didFailWithError:Error Domain=PKInstallErrorDomain Code=112 UserInfo=0x105005210 “An error occurred while running scripts from the package “photoshopcs5_Install.pkg”.”
    %97.750000
    Install failed: The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.
    The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)
    Folder 07 done (17:34:23)

    in reply to: iLifeSupport9.0.4 #378672
    vogtstev
    Participant

    Hmmm. I am having the same problem. I am running 1.6b2 and it doesn’t appear to be installing. It is after my repackaged ilife09 (with previous updates), but before the individual updates like in the last post.
    I also tried grabbing the packages with softwareupdate and splitting them “thomasb” did, but instead of two packages I end up with iLifeSlideshow_11.pkg and 061-7594.English.dist.
    I thought I remember something like this in the past – like if the host system doesn’t have it installed or something.

    Does anyone remember that or having similar issues?
    Thanks!

    in reply to: 10.6 Snow Leopard InstallerChoices.xml #378662
    vogtstev
    Participant

    Does anyone know how to get just the specific vendor print drivers. I’m assuming this is not an option anymore. I would basically like to remove Epson and Canon drivers. Any ideas?

    Thanks!

    in reply to: Who’s using InstaDMG… need names for Macworld #377948
    vogtstev
    Participant

    Gustavus Adolphus College of Minnesota has been using Composer + InstaDMG + DeployStudio since they came out. Great products!

    in reply to: Running application at login window #377637
    vogtstev
    Participant

    Thanks for all your great information. I found the loginbanner example. I’ll give it a shot. I was thinking AppleScript Studio was on it’s last life. Oh well, looks it’s time for me to learn Objective C.

    Thanks!

    in reply to: ACL’s on Home Directory #376309
    vogtstev
    Participant

    Thank you. That is what I suspected, but wanted top make sure I hadn’t set something wonky.

    in reply to: Detect Network Account #376296
    vogtstev
    Participant

    Thank you! That makes perfect sense!! Here is what I did:

    LOCAL=`/usr/bin/dscl . read /Users/$1`

    # Check if user is local
    if [ “$LOCAL” != “” ]; then
    HOMEDIR=”/Users/$1″
    fi

    Thanks!
    Steve

    in reply to: User Disk Quota Enforcement #375506
    vogtstev
    Participant

    Thanks for the info about edquota. Just out of curiosity, would be setting this on the server or would I be doing some type of check with it at user login?

    thanks for any more info.
    Steve

    in reply to: Odd Logins from InstaDMG / Leopard Image #373862
    vogtstev
    Participant

    My initial accounts get created with InstaDMG, but faculty are free to rule their own computer to a point and add their own accounts. They usually do this through system prefs on the local workstation. So I would need to update something on my workstations. Hmmm.

    in reply to: Odd Logins from InstaDMG / Leopard Image #373841
    vogtstev
    Participant

    Hmmm. So I’m thinking it’s not really augmenting since i haven’t ever set that up, but definitely using some form of the magic triangle. I’ve been trying to think of ways to get this fixed and so far this is what I have:

    1. Prevent the “augmentation” – no idea how I can do this aside from removing machine from directory services which means I would loose all management. I would like this to work.
    2. Asked OpenLDAP admins to change the UID’s of the few in the 500 UID range. They said they were worried about this causing problems. What would this cause?
    3. Have to change UID’s on all my clients. This is the most work, but maybe what I’ll have to do. The only problem is that I believe leopard will create UID’s again starting in the 500 range. Is there a way to tell it to start at 550 or 601 or something?

    Thanks again for any ideas!

    in reply to: Final Cut Studio #373840
    vogtstev
    Participant

    I originally tried to put the seperate disk packages in, but it didn’t work properly as I suspected. I ended up just repackaging with composer. It surprisingly didn’t take long at all. I installed, ran updates and packaged. It seems to be working great so far. It did take InstaDMG a long to create the image. It ended up being about 50 GB since fcp is huge. I just left it over night and all was good when I came in the next morning. Good luck

    in reply to: Odd Logins from InstaDMG / Leopard Image #373823
    vogtstev
    Participant

    So I went to Search/Users and looked at each record. They of course had all different info, with the exception of the UniqueID. I also looked at /Search/config and only noticed my MCX and a macosodconfig containers and nothing to do with augmenting. Not sure if I was looking in the right spot for the augmented record or not. I have never specifically setup augmented records either. Am I looking in the right spots?

    Thank you!!!!!!
    Steve

Viewing 15 posts - 16 through 30 (of 50 total)