Project

General

Profile

Bug #5611

Updated by François ARMAND over 9 years ago

This: 

 * Jump to the Rudder Technique tree 

 <pre>cd /var/rudder/configuration-repository/techniques</pre> 

 * Copy the reference Technique library to your local tree 

 <pre>cp -a /opt/rudder/share/techniques/* .</pre> 

 * Update the GIT repository to match the new tree state 

 <pre>git commit -am "Upgraded the Technique library (by $USER)"</pre> 

 Doesn't work and should be this: 

 * Jump to the Rudder Technique tree 

 <pre>cd /var/rudder/configuration-repository/techniques</pre> 

 * Copy the reference Technique library to your local tree 

 <pre>cp -a /opt/rudder/share/techniques/* .</pre> 

 * Update the GIT repository to match the new tree state 

 <pre>cd /var/rudder/configuration-repository 
 git add . 
 git commit -m -a "Upgraded the Technique library (by $USER)"</pre>

Back