Actions
User story #4046
closedUpgrade script commits updates of configuration-repository from the repository base directory
Pull Request:
UX impact:
Suggestion strength:
User visibility:
Effort required:
Name check:
Fix check:
Regression:
Description
rudder-upgrade scripts update system techniques on every run.
but the git commands are run from /var/rudder/confiugration-repository/techniques, which could update the wrong git (a subgit may have been created to handle Techniques updates)
/var/rudder/configuration-repository/techniques/ && git add -A system/ && git commit -m "Upgrade system Techniques - automatically done by rudder-upgrade script"
should be replaced by:
/var/rudder/configuration-repository/ && git add -A techniques/system/ && git commit -m "Upgrade system Techniques - automatically done by rudder-upgrade script"
Actions