Actions
Bug #4822
closedProcedure on how to update the Technique Librairy is invalid
Status:
Released
Priority:
1 (highest)
Assignee:
Category:
Documentation
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
The procedure states that we should execute the following commands:
cd /var/rudder/configuration-repository/techniques cp -a /opt/rudder/share/techniques/* . git commit -am "Upgraded the Technique library (by $USER)"
but this does not add the new files (here the new techniques), in the git repo, only update the existing ones
the correct procedure should be
cd /var/rudder/configuration-repository/techniques cp -a /opt/rudder/share/techniques/* . git add -A git commit -am "Upgraded the Technique library (by $USER)"
Actions