Bug #15586
Updated by François ARMAND about 5 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>
And:
<pre>
/opt/rudder/share/commands/agent-factory-reset :
if [ -x /usr/bin/uuid_get ]
then
/usr/bin/uuid_get > /opt/rudder/etc/uuid.hive
else
uuidgen > /opt/rudder/etc/uuid.hive
fi
</pre>