From 79109006b54127d31a4078cc2f2071f6680e8618 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Wed, 15 May 2024 06:00:25 -0600 Subject: [PATCH] EXPERIMENTAL: reenable Mac machine test, with patch from Paul, for debugging #22569 Signed-off-by: Ed Santiago --- .cirrus.yml | 2 -- pkg/machine/apple/apple.go | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index 512427d7bc10..dd01b726896d 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -316,7 +316,6 @@ osx_alt_build_task: alias: osx_alt_build # Docs: ./contrib/cirrus/CIModes.md only_if: *no_rhel_release # RHEL never releases podman mac installer binary - skip: $CI == $CI persistent_worker: &mac_pw labels: os: darwin @@ -808,7 +807,6 @@ podman_machine_mac_task: name: *std_name_fmt alias: podman_machine_mac only_if: *machine_cron_not_tag_build_docs - skip: $CI == $CI depends_on: *build persistent_worker: *mac_pw env: diff --git a/pkg/machine/apple/apple.go b/pkg/machine/apple/apple.go index 93201407e965..04db7638b8b3 100644 --- a/pkg/machine/apple/apple.go +++ b/pkg/machine/apple/apple.go @@ -124,7 +124,7 @@ func GenerateSystemDFilesForVirtiofsMounts(mounts []machine.VirtIoFs) ([]ignitio mountPrep.Add("Service", "Type", "oneshot") mountPrep.Add("Service", "ExecStartPre", "chattr -i /") mountPrep.Add("Service", "ExecStart", "mkdir -p '%f'") - mountPrep.Add("Service", "ExecStopPost", "chattr +i /") + // mountPrep.Add("Service", "ExecStopPost", "chattr +i /") mountPrep.Add("Install", "WantedBy", "remote-fs.target") mountPrepFile, err := mountPrep.ToString()