Skip to content

Commit 54363bc

Browse files
committed
Fixed conditional_installer variables
The policy looks for these variables in 'conditional_installer:main', not 'conditional_installer:conditional_installer'. And the policy looks for 'packages', not 'name' as the key holing the comma separated list of packages that should be installed for a given condition. Ticket: ENT-10745 Changelog: Title Fixed key name of packages for conditional_installer installed packages
1 parent e6c731a commit 54363bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cfbs.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
"type": "string",
2222
"variable": "packages_to_uninstall",
2323
"namespace": "conditional_installer",
24-
"bundle": "conditional_installer",
24+
"bundle": "main",
2525
"label": "Uninstall",
2626
"question": "Which package(s) would you like to be uninstalled?"
2727
},
2828
{
2929
"type": "list",
3030
"variable": "packages_to_install",
3131
"namespace": "conditional_installer",
32-
"bundle": "conditional_installer",
32+
"bundle": "main",
3333
"label": "Install",
3434
"subtype": [
3535
{
36-
"key": "name",
36+
"key": "packages",
3737
"type": "string",
3838
"label": "Package(s)",
3939
"question": "Package(s) to install"

0 commit comments

Comments
 (0)