Actions
Bug #16472
closedOutput redirection of rudder-init is broken
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
Reviewed
Fix check:
Checked
Regression:
Description
In Rudder-init we are executing cf-agent on the subset "root_component_check" bundle which should be logged to the install log file.
we are executing:
"${CF_AGENT}" -b root_component_check >> "$TMP_LOG" 2>&1
Which for some reason fails to log the output, we should instead use the following since we are executing it under the bash shell:
"${CF_AGENT}" -b root_component_check &>"$TMP_LOG"
Updated by Félix DALLIDET almost 5 years ago
- Status changed from New to In progress
- Assignee set to Félix DALLIDET
Updated by Félix DALLIDET almost 5 years ago
- Status changed from In progress to Pending technical review
- Assignee changed from Félix DALLIDET to Benoît PECCATTE
- Pull Request set to https://github.com/Normation/rudder-packages/pull/2175
Updated by Félix DALLIDET almost 5 years ago
- Status changed from Pending technical review to Pending release
Applied in changeset rudder-packages|dd061d72cbe6818a5660a4abd384c897db353c11.
Updated by François ARMAND almost 5 years ago
- Related to Bug #16474: Output redirection of rudder-init is broken #2 added
Updated by François ARMAND almost 5 years ago
- Fix check changed from To do to Checked
Updated by François ARMAND almost 5 years ago
- Related to deleted (Bug #16474: Output redirection of rudder-init is broken #2)
Updated by Alexis Mousset almost 5 years ago
- Name check changed from To do to Reviewed
Updated by Vincent MEMBRÉ almost 5 years ago
- Status changed from Pending release to Released
This bug has been fixed in Rudder 6.0.2 which was released today.
Actions