Actions
Bug #15586
closedUuid generation fails on AIX 7.2
Pull Request:
Severity:
Major - prevents use of part of Rudder | no simple workaround
UX impact:
User visibility:
Operational - other Techniques | Rudder settings | Plugins
Effort required:
Priority:
70
Name check:
Reviewed
Fix check:
Checked
Regression:
Description
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:
# cat /opt/rudder/bin/rudder-uuidgen #!/bin/sh if [ -x /usr/bin/uuid_get ] then /usr/bin/uuid_get …
And:
/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
Updated by Vincent MEMBRÉ about 5 years ago
- Status changed from New to In progress
- Assignee set to Vincent MEMBRÉ
Updated by Vincent MEMBRÉ about 5 years ago
- Subject changed from uuid generation fails on AIX to uuid generation fails on AIX 7.2
Updated by Vincent MEMBRÉ about 5 years ago
- Status changed from In progress to Pending technical review
- Assignee changed from Vincent MEMBRÉ to Benoît PECCATTE
- Pull Request set to https://github.com/Normation/rudder-packages/pull/2049
Updated by Vincent MEMBRÉ about 5 years ago
- Status changed from Pending technical review to Pending release
Applied in changeset rudder-packages|c0a25ff97b2b569b85257d218a838016de883483.
Updated by Vincent MEMBRÉ about 5 years ago
We don't need to update fatory-reset command since it already use /opt/rudder/bin/uuidgen, which is fixed here
Updated by Vincent MEMBRÉ about 5 years ago
- Target version changed from 5.0.14 to 5.0.13
Updated by Vincent MEMBRÉ about 5 years ago
- Fix check changed from To do to Checked
Updated by Alexis Mousset about 5 years ago
- Name check changed from To do to Reviewed
Updated by Vincent MEMBRÉ about 5 years ago
- Subject changed from uuid generation fails on AIX 7.2 to Uuid generation fails on AIX 7.2
Updated by Vincent MEMBRÉ about 5 years ago
- Status changed from Pending release to Released
This bug has been fixed in Rudder 5.0.13 which was released today.
Actions