Project

General

Profile

Actions

Bug #4822

closed

Procedure on how to update the Technique Librairy is invalid

Added by Nicolas CHARLES almost 10 years ago. Updated about 9 years ago.

Status:
Released
Priority:
1
Category:
Documentation
Target version:
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

Also available in: Atom PDF