From 454ae5e8c6e2514678dde2c47a9b0654412af74a Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 19 Nov 2021 12:26:30 -0700 Subject: Update PolyPkg --- scripts/pp | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/pp b/scripts/pp index c19bc7351..f3eba3e1d 100755 --- a/scripts/pp +++ b/scripts/pp @@ -1,6 +1,6 @@ #!/bin/sh # Copyright 2021 One Identity LLC. ALL RIGHTS RESERVED -pp_revision="20210811" +pp_revision="20211119" # Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. # # Redistribution and use in source and binary forms, with or without @@ -6689,7 +6689,7 @@ pp_backend_rpm_function () { /etc root:admin 0755 /var root:admin 0755 - + Info.plist = { CFBundleGetInfoString: "1.2.3, One Identity LLC.", CFBundleIdentifier: "com.quest.rc.openssh", @@ -6724,7 +6724,7 @@ pp_backend_rpm_function () { # Startup scripts 'launchd' is a kind of combined inetd and rc/init.d system. - + Create a /Library/LaunchDaemons/$daemonname.plist file Examples found in /System/Library/LaunchDaemons/ See manual page launchd.plist(5) for details: @@ -6776,6 +6776,8 @@ pp_backend_macos_init () { pp_macos_bundle_version= pp_macos_bundle_info_string= pp_macos_pkg_type=bundle + pp_macos_pkg_background= + pp_macos_pkg_background_dark= pp_macos_pkg_license= pp_macos_pkg_readme= pp_macos_pkg_welcome= @@ -7357,7 +7359,7 @@ pp_backend_macos_flat () { # Write Distribution file cat <<-. >$pkgdir/Distribution - + $name $version @@ -7374,6 +7376,14 @@ pp_backend_macos_flat () { cp -R "${pp_macos_pkg_license}" $Resources echo " " >>$pkgdir/Distribution fi + if test -n "$pp_macos_pkg_background"; then + cp -R "${pp_macos_pkg_background}" $Resources + echo " " >>$pkgdir/Distribution + fi + if test -n "$pp_macos_pkg_background_dark"; then + cp -R "${pp_macos_pkg_background_dark}" $Resources + echo " " >>$pkgdir/Distribution + fi cat <<-. >>$pkgdir/Distribution @@ -7382,7 +7392,7 @@ pp_backend_macos_flat () { #$pkgfile - + . # write scripts archive -- cgit v1.2.1