From ffa3b086c68eeae678d0e00fc562c8340b30c9be Mon Sep 17 00:00:00 2001 From: Greg Neagle Date: Fri, 24 Mar 2023 15:30:06 -0700 Subject: [PATCH] Various tweaks to work around various install issues, some of which are here: https://github.com/containers/podman/issues/17910 --- Podman/Podman.munki.recipe | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Podman/Podman.munki.recipe b/Podman/Podman.munki.recipe index 8c4cac7..b9a9a93 100644 --- a/Podman/Podman.munki.recipe +++ b/Podman/Podman.munki.recipe @@ -23,6 +23,11 @@ MUNKI_ARCH: one of "x86_64" (for Intel) or "arm64" (for Apple silicon) PodmanDesktop pkginfo + blocking_applications + + /opt/podman/qemu/bin/qemu-system-x86_64 + /opt/podman/qemu/bin/qemu-system-aarch64 + catalogs testing @@ -33,8 +38,25 @@ MUNKI_ARCH: one of "x86_64" (for Intel) or "arm64" (for Apple silicon) podman.io display_name %NAME% + installer_environment + + USER + CURRENT_CONSOLE_USER + name %NAME% + postuninstall_script + #!/bin/sh +/bin/rm -r /opt/podman +exit 0 + + preinstall_script + #!/bin/sh +if [ -f /opt/podman/bin/podman-mac-helper ] ; then + /opt/podman/bin/podman-mac-helper uninstall +fi +exit 0 + supported_architectures %MUNKI_ARCH%