Category filter

How to sign macOS PKG files for deployment

Signing a PKG file is essential for security purposes, to ensure that the app is safe and trustable for use and is free from malware. A signed PKG app file can be remotely deployed to the enterprise-ready macOS devices through the Hexnode MDM console. To sign macOS packages, you will require access to an Apple Developer account. Signing certificates can be generated via the Apple Developer account.

Two basic requirements should be met to deploy macOS PKGs:

  1. The .pkg file is built as a product archive.
  2. To distribute macOS PKG as an enterprise app, the .pkg file should be signed with a Developer ID obtained from an Apple Developer Enterprise account. For all other apps to be distributed via the Mac App Store, the .pkg file is signed using the “Developer ID Installer” certificate, obtained from an Apple Developer account.

Notes:


Apps are not natively available in .pkg file type. For package deployment, you have to repackage these installation files from their native format into PKG file. Apps packaged in DMG/APP file formats can be easily converted to PKG format.


Signing a package is a multi-step process.
  1. Generate a signing request.
  2. Generate Developer ID Installer certificate.
  3. Sign the macOS PKG file.

Steps to generate a signing request

For generating a certificate, first of all you require a Certificate Signing Request (CSR) file.

  1. Open “Keychain Access” program within your macOS device.
  2. Click on Keychain Access appearing on the top menu bar.
  3. Go to Certificate Assistant > Request a Certificate From a Certificate Authority.
  4. Add your email address in the User Email Address field, and name in the Common Name field. Leave the CA Email Address field blank.
  5. Under the Request is option, click Saved to Disc.
  6. Click Continue.
  7. Specify the location on the device where the .csr file is to be saved and click Save.

The signing request will be saved to your machine in the specified location. This file is required to generate the “Developer ID Installer” certificate.

Steps to generate Developer ID Installer certificate

To generate the certificate:

  1. Go to Apple Developer Portal. Click on Accounts.
  2. Either create a new account or sign in using an existing account.
  3. Click on Certificates > IDs > Profiles.
  4. Click on Certificates + and select Developer ID Installer.
  5. Upload the Certificate Signing Request which was downloaded in the above step.
  6. The Developer ID Installer certificate will be generated. Download the certificate and install it on your macOS device to sign the packages.

Steps to build and sign a macOS PKG file

To build and sign a macOS PKG file for a third-party app,

  1. Install the app on the device.
  2. Open Terminal.
  3. Build the .pkg file using the pkgbuild command.

    Here, the quoted text refers to the name of your certificate. The two arguments specify the location of the already installed .app file (/path_to_installed_app/macapp.app) and the location of the newly generated .pkg file (/path_to_saved_package/packagename.pkg), respectively.
  4. Sign the .pkg file using the productbuild command.

    Here, the quoted text refers to the name of the certificate. The two arguments specify the location of the newly generated .pkg file (/path_to_saved_package/packagename.pkg) and the location of the signed .pkg file (/path_to_signed_pkg/signed.pkg), respectively.

Steps to sign macOS PKG files

To sign a macOS PKG file,

  1. Open “Keychain Access” within the Mac and locate the certificate. The name of the certificate should be of the format: Developer ID Installer: Apple account name (serial number).
  2. Open “Terminal”. The command to sign the package should look something like this:

    Here, the quoted text following the –sign tag refers to the name of your certificate. The two arguments, following the name of the certificate, refer to the current location of the unsigned package (/Desktop/example.pkg) and the location of the signed package (/Desktop/signed-example.pkg), respectively.

The signed certificate gets stored in the destination path specified in the command. Now you can upload it to the app inventory.

Exception:


Hexnode supports only signed distribution packages for package deployment. During package validation, the pkg file should contain both the package info root file and distribution root file. Uploading a signed flat package without these files causes the package validation to fail, and hence the app upload will be unsuccessful.

  • Managing Mac Devices