From 940817797209248ef3d212ae4e33523554435013 Mon Sep 17 00:00:00 2001 From: Josh Cooper Date: Mon, 17 Jun 2024 19:09:24 -0700 Subject: [PATCH] Add minitar gem on AIX The puppet module install command assumes tar is GNUtar, which doesn't work on AIX. Install minitar on AIX like we do for Windows and Solaris. --- configs/projects/_shared-agent-components.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/projects/_shared-agent-components.rb b/configs/projects/_shared-agent-components.rb index 29d296932..6e722cc46 100644 --- a/configs/projects/_shared-agent-components.rb +++ b/configs/projects/_shared-agent-components.rb @@ -62,7 +62,7 @@ proj.component 'rubygem-fast_gettext' proj.component 'rubygem-ffi' -if platform.is_windows? || platform.is_solaris? +if platform.is_windows? || platform.is_solaris? || platform.is_aix? proj.component 'rubygem-minitar' end