Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #16474: Output redirection of rudder-init is broken #2 #2176

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions rudder-webapp/SOURCES/rudder-init
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,11 @@ cp -r /opt/rudder/share/initial-ncf/* /var/rudder/ncf/common/
cp -r /opt/rudder/share/initial-promises/* /var/rudder/cfengine-community/inputs/

# Ensure that the passwords are correctly propagated
"${CF_AGENT}" -b root_component_check &>"$TMP_LOG"
"${CF_AGENT}" -b root_component_check &>>"$TMP_LOG"

# Restart services
echo -n "Restarting jetty..."
systemctl restart rudder-jetty 2>&1 | tee "${TMP_LOG}"
systemctl restart rudder-jetty
echo " done."

RUDDER_CONTEXT=$(grep contextPath ${RUDDER_OPT}/share/webapps/rudder.xml | sed "s@^\s*<Set name=\"contextPath\">\(.*\)</Set>@\1@")
Expand Down