Actions
Bug #7408
closedArchitecture #7114: Make the bundlesequence be defined in a dedicated bundle
Architecture #7126: Add a new system variable for the "rudder_directives" bundle
Empty inputs list is generated with double quotes even if empty
Status:
Released
Priority:
N/A
Assignee:
Category:
Web - Config management
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
Currently, on a new Rudder install, the file rudder_directives.cf contains this:
body file control { inputs => { "" }; } bundle agent rudder_directives { methods: }
CFEngine interprets the "" to mean "${sys.inputs}" and then complains as follows:
error: Can't parse directory '/var/rudder/cfengine-community/inputs.new/'.
This string should be empty (as in 0 characters) when no inputs are available, as follows:
inputs => { };
Actions