Project

General

Profile

Bug #15586

Updated by François ARMAND over 4 years ago

On AIX 7.2, uuid generation fails which obviously blocks agent installation. 

 If we modify @uuidgen@ by @uuid_get@, the installation is able to succeed: 

 <pre> 
 # cat /opt/rudder/bin/rudder-uuidgen 

 #!/bin/sh 

 if [ -x /usr/bin/uuid_get ] 
 then 
   /usr/bin/uuid_get 
 … 
 </pre> succeed.

Back