Skip to content

Commit 26e0151

Browse files
authored
Merge pull request #82 from nickanderson/ENT-10745/master
ENT-10745: Fixed bundle name for conditional_installer input data
2 parents e6c731a + e6fca87 commit 26e0151

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cfbs.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
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
{

security/conditional-installer/main.cf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bundle agent main
1313
# Mock data, should be based on input:
1414
# "packages_to_uninstall"
1515
# string => 'talk,talk-server,telnet,telnet-server';
16-
#
16+
#
1717
# "packages_to_install"
1818
# data => '[
1919
# {"packages": "talk,talk-server", "condition": "any", "why": ""},
@@ -33,7 +33,7 @@ bundle agent main
3333
# Determine packages to uninstall:
3434
"_packages_to_uninstall_unfiltered"
3535
slist => string_split("$(packages_to_uninstall)", ",", 100);
36-
36+
3737
"_packages_to_uninstall"
3838
slist => difference(
3939
_packages_to_uninstall_unfiltered,

0 commit comments

Comments
 (0)