Actions
Bug #5611
closedTechnique upgrade documentation is not correct
Bug #5611:
Technique upgrade documentation is not correct
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
This:
- Jump to the Rudder Technique tree
cd /var/rudder/configuration-repository/techniques
- Copy the reference Technique library to your local tree
cp -a /opt/rudder/share/techniques/* .
- Update the GIT repository to match the new tree state
git commit -am "Upgraded the Technique library (by $USER)"
Doesn't work and should be this:
- Jump to the Rudder Technique tree
cd /var/rudder/configuration-repository/techniques
- Copy the reference Technique library to your local tree
cp -a /opt/rudder/share/techniques/* .
- Update the GIT repository to match the new tree state
cd /var/rudder/configuration-repository git add . git commit -m "Upgraded the Technique library (by $USER)"
Actions