From b9ea6ac04ec4cdc728a60757c979416e402c9c5c Mon Sep 17 00:00:00 2001 From: Nick Anderson Date: Mon, 16 Oct 2023 12:32:05 -0500 Subject: [PATCH 1/2] conditional-installer: Fixed input key name Ticket: ENT-10745 Changelog: None --- cfbs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfbs.json b/cfbs.json index e796f64..1d138d3 100644 --- a/cfbs.json +++ b/cfbs.json @@ -110,7 +110,7 @@ "label": "Install", "subtype": [ { - "key": "name", + "key": "packages", "type": "string", "label": "Package(s)", "question": "Package(s) to install" From a8e3d14356c731b1cb55560cdda10909fff39ee4 Mon Sep 17 00:00:00 2001 From: Nick Anderson Date: Mon, 16 Oct 2023 12:39:02 -0500 Subject: [PATCH 2/2] conditional-installer: Fixed WARNING for module input This change fixes a warning about using a deprecated build step for input. WARNING: Deprecated 'input' build step behavior - it should be: 'input ./input.json def.json' --- cfbs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfbs.json b/cfbs.json index 1d138d3..94b300d 100644 --- a/cfbs.json +++ b/cfbs.json @@ -89,7 +89,7 @@ "subdirectory": "security/conditional-installer", "steps": [ "copy main.cf services/cfbs/modules/conditional-installer/main.cf", - "input conditional-installer/input.json def.json", + "input ./input.json def.json", "bundles conditional_installer:main", "policy_files services/cfbs/modules/conditional-installer/main.cf" ],