青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 319, comments - 22, trackbacks - 0, articles - 11
  C++博客 :: 首頁 :: 新隨筆 :: 聯系 :: 聚合  :: 管理

Creating a Custom Installer for Mac (PackageMaker Package)

Posted on 2011-05-07 07:35 RTY 閱讀(871) 評論(0)  編輯 收藏 引用 所屬分類: PythonMac os
Creating a Custom Installer for Mac (PackageMaker Package)

RSS

Support Topics/Knowledge Base

Creating a Custom Installer for Mac (PackageMaker Package)

Support
posted this on May-23 2010 02:38 pm

Overview

While Identity Finder is distributed from the IdentityFinder.com website as a dmg, modification to the dmg or application bundle contained therein are not supported. Any organization using Identity Finder for Mac version 3.0 or later (which can take advantage of the management capabilities of Identity Finder Enterprise Console version 4.5 or later) must create and deploy a custom Installer Package that can include a custom plist, license file, and other supplementary files as well as configure the endpoint service application.

The only supported method for creating a custom Installer Package is to use the builds scripts referenced by and attached to this article. These build scripts require the PackageMaker application available with the Apple Developer Tools to be installed on the system used to create the package. Please refer to the Apple User Guide (external PDF link) for complete documentation.

Note: Configuring HTTPS/SSL is outside the scope of this article. If SSL is to be utilized, it is necessary to ensure that the required files and settings are available prior to building the package. For additional information, please refer to the article:

Note: This information only applies to Identity Finder for Mac v3.7 and later. For reference or configuring/troubleshooting an earlier installation package, refer to this KB:

This article contains the following sections:

 

Obtaining the Installation Files

To begin the process, download the build script, Identity Finder application, and client/console communication configuration file.

  1. Download the file IdentityFinderPackageBuilder.zip containing the build scripts.
  2. Download the most recent version of IdentityFinderMacSetup.dmg.
  3. Download the plist with the client/console communication settings from the enterprise console.

 

Preparing the Installation Files

Before executing the script to build the package, it is necessary to organize the files that will be included in the package.

  1. Extract IdentityFinderPackageBuilder.zip to the system that will be used to build the package. That system must have Apple Package Maker installed.
  2. Place the application dmg, IdentityFinderMacSetup.dmg, in the IdentityFinderPackageBuilder folder. The necessary files will be automatically extracted by the script. By default, the application will be installed to:
    /Applications/Identity Finder.app
  3. If using a license file, place the license file - identityfinder.lic - in the IdentityFinderPackageBuilder/Resources folder. By default, this file will be installed to:
    /Library/Application Support/Identity Finder/identityfinder.lic
  4. If using an enterprise console, place the system plist obtained from the Console - com.identityfinder.macedition.plist - in the IdentityFinderPackageBuilder/Resources folder. By default, this file will be installed to:
    /Library/Preferences/com.identityfinder.macedition.plist
  5. Optionally edit the system plist to add in other settings (not recommended)
  6. If using HTTPS/SSL:
    1. Edit the system plist to add the SSL settings. More information on SSL and the necessary settings, is available in the KB article Enabling SSL communication between Mac clients and the Enterprise Console.
    2. Place the certificate file - ca.Pem - in the IdentityFinderPackageBuilder/Resources folder. By default, this file will be installed to:
      /Library/Application Support/Identity Finder/ca.pem

 

Building the Installer Package

The process of building the pkg installer package is performed by executing the script IdentityFinderPackageBuilder.sh at a command prompt, as follows:

  1. Open a Terminal window
  2. Change directory (cd) to the IdentityFinderPackageBuilder/Resources directory
    cd IdentityFinderPackageBuilder/Resources
  3. Verify that all the scripts are executable. If necessary, change the permissions for each script by executing chmod ugo+x. For example:
    chmod ugo+x preflight
    chmod ugo+x preinstall
  4. Change directory to the IdentityFinderPackageBuilder directory
    cd ..
  5. Verify that the IdentityFinderPackageBuilder.sh script file is executable. If ncessary, change the permissions by executing chmod ugo+x. For example:
    chmod ugo+x IdentityFinderPackageBuilder.sh
  6. Execute the IdentityFinderPackageBuilder.sh script. The script requires one of the following two parameters:
    • -RootAuth: Root authorization will be required when the installer runs. This parameter should be used for the initial user-initiated install as root authorization must be obtained to allow the installation of the system resources.
    • -NoRootAuth: Root authorization will not be required when the installer runs. This parameter is used during subsequent automatic and silent upgrades where the installer will run with root permissions.
    To require root authorization, use the -RootAuth parameter:
    ./IdentityFinderPackageBuilder.sh -RootAuth
  7. Press the spacebar to scroll through the license agreement until the “Agree Y/N?” prompt is displayed
  8. Type 'y' at the prompt

The script will then run to completion and create IdentityFinder.pkg in the folder IdentityFinderPackageBuilder/Output. Once completed, test the package.

 

Testing the Package

After building the package, it is necessary to execute the package to verify that all of the components are properly installed and that the endpointservice is started.

  1. Open a Finder window to the location containing the newly created IdentityFinder.pkg file
  2. Run the installer. The install may be monitored for status by performing the following steps:
    • At the Welcome screen, select the Window menu and then select, “Installer Log”
    • In the Detail Level popup, select, "Show All Logs"
    • Example of a successful console log:
      Dec  8 11:52:40 Installer[51892]: @(#)PROGRAM:Install  PROJECT:Install-388
      Dec 8 11:52:40 Installer[51892]: @(#)PROGRAM:Installer PROJECT:Installer-281
      Dec 8 11:52:40 Installer[51892]: Hardware: MacBookPro5,2 @ 2.93 GHz (x 2), 8192 MB RAM
      Dec 8 11:52:40 Installer[51892]: Running OS Build: Mac OS X 10.5.8 (9L31a)
      Dec 8 11:52:40 Installer[51892]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
      Dec 8 11:52:40 Installer[51892]: Env: TMPDIR=/var/folders/ka/kaBzHl2IG6yXTTiPRDoALU+++TI/-Tmp-/
      Dec 8 11:52:40 Installer[51892]: Env: SHELL=/bin/bash
      Dec 8 11:52:40 Installer[51892]: Env: HOME=/Users/devuser
      Dec 8 11:52:40 Installer[51892]: Env: USER=devuser
      Dec 8 11:52:40 Installer[51892]: Env: LOGNAME=devuser
      Dec 8 11:52:40 Installer[51892]: Env: DISPLAY=/tmp/launch-3zJTAy/:0
      Dec 8 11:52:40 Installer[51892]: Env: SSH_AUTH_SOCK=/tmp/launch-aGzIG1/Listeners
      Dec 8 11:52:40 Installer[51892]: Env: Apple_PubSub_Socket_Render=/tmp/launch-yUzIST/Render
      Dec 8 11:52:40 Installer[51892]: Env: __CF_USER_TEXT_ENCODING=0x1F5:0:0
      Dec 8 11:52:40 Installer[51892]: Env: SECURITYSESSIONID=965b9be0
      Dec 8 11:52:40 Installer[51892]: Env: COMMAND_MODE=unix2003
      Dec 8 11:52:40 Installer[51892]: Env: CVS_RSH=ssh
      Dec 8 11:52:40 Installer[51892]: Identity Finder Installation Log
      Dec 8 11:52:40 Installer[51892]: Opened from: /Users/devuser/Documents/workspace/IdfMacPublic/Installer/IdentityFinderPackageBuilder/IdentityFinder.pkg
      Dec 8 11:52:41 installdb[51894]: started (uid 96)
      Dec 8 11:52:41 installdb[51894]: Opened receipt database on '/' with schema 17.
      Dec 8 11:52:41 Installer[51892]: Found receipt (full match) for (identityfinder / com.identityfinder.pkg): (identityfinder / com.identityfinder.pkg)
      Dec 8 11:52:47 installdb[51894]: done. (0.004u + 0.003s)
      Dec 8 11:52:55 runner[51895]: Administrator authorization granted.
      Dec 8 11:52:55 Installer[51892]: ================================================================================
      Dec 8 11:52:55 Installer[51892]: User picked Standard Install
      Dec 8 11:52:55 Installer[51892]: Choices selected for installation:
      Dec 8 11:52:55 Installer[51892]: Upgrade: "Identity Finder"
      Dec 8 11:52:55 Installer[51892]: IdentityFinder.pkg : com.identityfinder.pkg : 3.7.0.3.7
      Dec 8 11:52:55 Installer[51892]: ================================================================================
      Dec 8 11:52:55 Installer[51892]: It took 0.00 seconds to summarize the package selections.
      Dec 8 11:52:55 Installer[51892]: -[IFPKGDerivedDocument sortedPackageLocations]: result = (\n file://localhost\n)
      Dec 8 11:52:55 Installer[51892]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
      Dec 8 11:52:55 Installer[51892]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Users/devuser/Documents/workspace/IdfMacPublic/Installer/IdentityFinderPackageBuilder/IdentityFinder.pkg
      Dec 8 11:52:55 Installer[51892]: _installNextPackage of 1
      Dec 8 11:52:55 installdb[51896]: started (uid 96)
      Dec 8 11:52:55 installdb[51896]: Opened receipt database on '/' with schema 17.
      Dec 8 11:52:55 Installer[51892]: Found receipt (full match) for (identityfinder / com.identityfinder.pkg): (identityfinder / com.identityfinder.pkg)
      Dec 8 11:52:55 Installer[51892]: Starting installation:
      Dec 8 11:52:55 Installer[51892]: Preparing volume "Macintosh HD" for installation
      Dec 8 11:52:55 Installer[51892]: Configuring volume "Macintosh HD"
      Dec 8 11:52:56 Installer[51892]: Preparing disk for local booted install.
      Dec 8 11:52:56 Installer[51892]: Free space on "Macintosh HD": 49.3 GB (52892991488 bytes).
      Dec 8 11:52:56 Installer[51892]: Create temporary directory "/private/tmp/IdentityFinder.pkg.51892EztnrK"
      Dec 8 11:52:56 Installer[51892]: run preflight script for Identity Finder
      Dec 8 11:52:56 runner[51895]: preflight[51897]: Starting Identity Finder installer preflight script
      Dec 8 11:52:56 runner[51895]: preflight[51897]: Ending Identity Finder installer preflight script
      Dec 8 11:52:56 runner[51895]: preflight[51897]:
      Dec 8 11:52:56 Installer[51892]: Processing Identity Finder:
      Dec 8 11:52:56 Installer[51892]: Determining files to install
      Dec 8 11:52:56 Installer[51892]: It took 0.01 seconds to create the install plan for identityfinder.
      Dec 8 11:52:56 Installer[51892]: Removing previously installed languages
      Dec 8 11:52:56 Installer[51892]: Configuring deferred files
      Dec 8 11:52:56 Installer[51892]: Determining obsolete files
      Dec 8 11:52:56 Installer[51892]: Assembling temporary receipt
      Dec 8 11:52:57 Installer[51892]: Performing pre-extraction actions
      Dec 8 11:52:57 Installer[51892]: run preupgrade script for Identity Finder
      Dec 8 11:52:57 runner[51895]: preupgrade[51899]: Starting pre_upgrade script
      Dec 8 11:52:57 runner[51895]: preupgrade[51899]: End pre_upgrade script
      Dec 8 11:52:57 runner[51895]: preupgrade[51899]:
      Dec 8 11:52:57 Installer[51892]: Removing obsoleted files
      Dec 8 11:52:57 Installer[51892]: Creating destination path
      Dec 8 11:52:57 Installer[51892]: Validating package payload
      Dec 8 11:52:57 Installer[51892]: Starting file extraction
      Dec 8 11:52:57 pkgExtractor[51900]: Extracting...
      Dec 8 11:52:58 pkgExtractor[51900]: 265 of 265 files written in 1.41 seconds.
      Dec 8 11:52:58 pkgExtractor[51900]: 44500 kilobytes installed at 30.9 MB/s.
      Dec 8 11:52:58 Installer[51892]: run postupgrade script for Identity Finder
      Dec 8 11:52:58 runner[51895]: postupgrade[51903]: Starting Identity Finder installer /Users/devuser/Documents/workspace/IdfMacPublic/Installer/IdentityFinderPackageBuilder/IdentityFinder.pkg/Contents/Resources/postupgrade script
      Dec 8 11:52:58 runner[51895]: postupgrade[51903]: Copying EndpointService to /Library/Application Support/Identity Finder...
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: EndpointService successfully copied to /Library/Application Support/Identity Finder
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: Copying com.identityfinder.launchdaemon.plist to /Library/LaunchDaemons...
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: com.identityfinder.launchdaemon.plist cp result = 0
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: Loading com.identityfinder.launchdaemon.plist...
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: launchctl load /Library/LaunchDaemons/com.identityfinder.launchdaemon.plist result = 0
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: Setting owner root:admin for /Applications/Identity Finder.app.
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: Setting file mode to 775 for /Applications/Identity Finder.app.
      Dec 8 11:52:59 runner[51895]: postupgrade[51903]: Ending Identity Finder installer /Users/devuser/Documents/workspace/IdfMacPublic/Installer/IdentityFinderPackageBuilder/IdentityFinder.pkg/Contents/Resources/postupgrade script
      Dec 8 11:52:59 Installer[51892]: Performing post-extraction actions
      Dec 8 11:52:59 Installer[51892]: Finishing receipt
      Dec 8 11:52:59 Installer[51892]: run postflight script for Identity Finder
      Dec 8 11:52:59 runner[51895]: postflight[51916]: Starting post_flight script
      Dec 8 11:52:59 runner[51895]: postflight[51916]: End post_flight script
      Dec 8 11:52:59 Installer[51892]: Removing temporary directory "/private/tmp/IdentityFinder.pkg.51892EztnrK"
      Dec 8 11:52:59 Installer[51892]: Finalize disk "Macintosh HD"
      Dec 8 11:52:59 Installer[51892]: Notifying system of updated components
      Dec 8 11:52:59 Installer[51892]: _installNextPackage of 0
      Dec 8 11:52:59 Installer[51892]:
      Dec 8 11:52:59 Installer[51892]: **** Summary Information ****
      Dec 8 11:52:59 Installer[51892]: Operation Elapsed time
      Dec 8 11:52:59 Installer[51892]: -----------------------------
      Dec 8 11:52:59 Installer[51892]: script 0.91 seconds
      Dec 8 11:52:59 Installer[51892]: zero 0.01 seconds
      Dec 8 11:52:59 Installer[51892]: install 2.79 seconds
      Dec 8 11:52:59 Installer[51892]: validate 0.00 seconds
      Dec 8 11:52:59 Installer[51892]: os 0.00 seconds
      Dec 8 11:52:59 Installer[51892]: extract 1.50 seconds
      Dec 8 11:52:59 Installer[51892]: receipt 0.41 seconds
      Dec 8 11:52:59 Installer[51892]: disk 1.01 seconds
      Dec 8 11:52:59 Installer[51892]: config 0.02 seconds
      Dec 8 11:52:59 Installer[51892]:
      Dec 8 11:53:00 Installer[51892]: Starting installation:
      Dec 8 11:53:00 Installer[51892]: Finalizing installation.
      Dec 8 11:53:00 Installer[51892]: Registering applications
      Dec 8 11:53:00 runner[51895]: Touched '/Applications/Identity Finder.app'
      Dec 8 11:53:00 Installer[51892]: Registered /Applications/Identity Finder.app.
      Dec 8 11:53:00 runner[51895]: Touched '/Applications/./Identity Finder.app'
      Dec 8 11:53:00 runner[51895]: Touched '/Applications/.'
      Dec 8 11:53:00 Installer[51892]: IFDInstallController 85DB40 state = 5
      Dec 8 11:53:00 Installer[51892]: Displaying 'Install Succeeded' UI.
      Dec 8 11:53:01 installdb[51896]: done. (0.004u + 0.003s)
  3. Verify that the application has been installed to /Applications (or the appropriate location if the script was modified).
    /Applications/Identity Finder.app
  4. Verify that the license file, certificate file, and system plist were all installed to the specified locations. For example:
    /Library/Application Support/Identity Finder/identityfinder.lic
    /Library/Application Support/Identity Finder/ca.pem
    /Library/Preferences/com.identityfinder.macedition.plist
  5. Verify that the launchdaemon, which automatically starts the endpoint service at system start-up, was installed to:
    /Library/LaunchDaemons/com.identityfinder.launchdaemon.plist
  6. Verify that the endpoint service binary was installed to:
    /Library/Application Support/Identity Finder/EndpointService
  7. Test the installed application to ensure that a search runs to completion and that the results appear in the console.

 

Removing files on upgrade

When executing an upgrade with a PackageMaker package, no files will be removed even if these files are not present in the new package. If it is necessary to remove files on upgrade, a Preflight script must be created and included in the new package by specifying its location on the Scripts tab within PackageMaker. For example, this script will delete a preexisting Identity Finder.app. Note: Be extremely careful when using this script as an error in any path may result in the deletion of all applications on the system. It is likely more desirable to move the old files to $HOME/.Trash and/or rename them.

A sample Uninstall script is attached to this article as UninstallIDF.sh.

 

Attachments

1 Person found this helpful - Me too!
Topic is closed for comments
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            99视频在线观看一区三区| 久久久九九九九| 亚洲国产欧美国产综合一区| 久久噜噜噜精品国产亚洲综合| 狠狠久久亚洲欧美| 欧美丰满高潮xxxx喷水动漫| 欧美日韩成人一区二区三区| 亚洲一级二级| 久久精品国产69国产精品亚洲| 在线精品福利| 亚洲欧洲精品一区二区三区 | 久久婷婷国产麻豆91天堂| 久久久91精品国产| 9人人澡人人爽人人精品| 亚洲视频免费观看| 黄色在线一区| 一区二区三区国产精华| 国产亚洲欧美中文| 91久久精品日日躁夜夜躁国产| 国产精品激情| 麻豆精品视频在线观看| 欧美日韩国产三级| 久久男人av资源网站| 欧美激情一区二区在线| 久久aⅴ国产欧美74aaa| 快she精品国产999| 欧美在线视频在线播放完整版免费观看| 久久久久久国产精品mv| 亚洲一区国产一区| 麻豆av福利av久久av| 亚洲综合不卡| 欧美日韩成人在线| 欧美大片在线影院| 国产视频在线观看一区二区三区| 亚洲欧洲日本国产| 亚洲高清在线| 羞羞答答国产精品www一本| 一区二区不卡在线视频 午夜欧美不卡在 | 在线国产精品一区| 亚洲欧美在线网| 亚洲视频狠狠| 欧美激情一区二区久久久| 久久天天狠狠| 国产精品亚洲激情| aa级大片欧美三级| 日韩天堂av| 免费在线欧美视频| 模特精品在线| 国产一区二区三区久久久久久久久| 日韩视频不卡| av成人国产| 欧美激情一区二区三区在线视频观看 | 激情文学一区| 欧美主播一区二区三区| 欧美一区免费| 国产精品一二三四区| 一区二区三区久久网| 中文精品视频| 欧美视频在线视频| 在线视频亚洲欧美| 亚洲伊人久久综合| 国产精品久久九九| 亚洲免费视频在线观看| 先锋影音久久久| 国产欧美日韩高清| 欧美伊人久久久久久午夜久久久久| 欧美一区二区在线播放| 国产日韩欧美在线播放| 欧美一区二区三区久久精品茉莉花| 欧美一二三区精品| 国产一区二区高清不卡| 久久九九全国免费精品观看| 老司机凹凸av亚洲导航| 亚洲电影视频在线| 欧美精品成人| 在线视频日韩| 久久免费视频网站| 最新亚洲一区| 国产精品hd| 午夜一区二区三区不卡视频| 麻豆成人在线观看| 亚洲精品美女| 国产精品久久久久久久久久三级| 欧美一区二区精美| 欧美黄色一区| 亚洲欧美成人在线| 精品88久久久久88久久久| 欧美xart系列在线观看| 亚洲午夜激情| 欧美xx视频| 亚洲欧美日韩天堂| 激情av一区| 欧美色中文字幕| 久久精品99国产精品酒店日本| 亚洲丰满在线| 欧美在线不卡| 日韩小视频在线观看专区| 国产农村妇女精品一区二区| 麻豆成人在线观看| 亚洲欧美经典视频| 亚洲国产婷婷综合在线精品| 欧美在线一级视频| 一区二区三区视频在线观看 | 免费成人黄色av| 亚洲一区在线视频| 亚洲国产欧美国产综合一区 | 亚洲午夜女主播在线直播| 国产视频在线一区二区| 欧美精品粉嫩高潮一区二区| 性欧美18~19sex高清播放| 亚洲国产一二三| 久久婷婷色综合| 亚洲欧美日韩另类| 一本色道久久88综合日韩精品 | 欧美午夜精品久久久久久浪潮| 久久精品视频亚洲| 亚洲在线一区| 亚洲精品少妇| 亚洲国产精品视频| 欧美h视频在线| 久久久久久成人| 欧美亚洲综合另类| 亚洲欧美综合精品久久成人 | 尤物精品国产第一福利三区 | 国产性做久久久久久| 欧美午夜无遮挡| 欧美人成免费网站| 男人插女人欧美| 久久午夜羞羞影院免费观看| 欧美一站二站| 欧美一区二区三区在线播放| 亚洲视频在线一区| 亚洲图片欧美午夜| 国产精品99久久久久久久女警| 亚洲精品在线二区| 亚洲精品国偷自产在线99热| 亚洲国产婷婷香蕉久久久久久99| 欧美激情第三页| 欧美韩日精品| 亚洲国产精品久久久久| 亚洲国产精品久久人人爱蜜臀| 欧美韩日一区二区三区| 欧美激情1区| 亚洲日韩欧美视频一区| 最新日韩在线| av成人毛片| 亚洲欧美久久| 久久久久成人精品| 美女爽到呻吟久久久久| 欧美不卡激情三级在线观看| 欧美高清hd18日本| 欧美日韩一本到| 国产精品免费久久久久久| 国产视频久久网| 精品成人一区二区| 日韩亚洲国产欧美| 亚洲欧美资源在线| 久久婷婷久久| 亚洲精品国偷自产在线99热| 在线视频欧美一区| 性刺激综合网| 欧美黄色免费| 国产伦理精品不卡| 亚洲二区在线观看| 在线视频亚洲| 久久激情视频久久| 欧美国产综合视频| 亚洲一区二区三区在线视频| 久久精品亚洲精品| 欧美日韩国产一区精品一区 | 欧美特黄一级大片| 国产一区二区在线观看免费播放| 最新成人av网站| 亚洲在线视频| 欧美成人午夜免费视在线看片| 99riav1国产精品视频| 性感少妇一区| 欧美精品在线看| 狠狠色综合日日| 亚洲图片在线观看| 欧美jizzhd精品欧美巨大免费| 亚洲免费高清| 美女脱光内衣内裤视频久久网站| 欧美性做爰猛烈叫床潮| 亚洲第一区在线| 香蕉久久夜色精品国产| 最新国产成人av网站网址麻豆 | 亚洲国产日本| 欧美制服丝袜| 国产精品美女久久久浪潮软件 | 精品动漫一区二区| 亚洲欧美日韩精品综合在线观看| 欧美激情精品久久久久久| 亚洲伊人一本大道中文字幕| 欧美大片在线看免费观看| 国内偷自视频区视频综合| 亚洲一区二区三区成人在线视频精品| 久久免费的精品国产v∧| 亚洲亚洲精品三区日韩精品在线视频| 欧美插天视频在线播放|