[virt-tools-list] [virt-manager PATCH] Generate valid UUIDs according to RFC4122
Martin Kletzander
mkletzan at redhat.com
Sat Jun 1 07:51:06 UTC 2013
Similar change to that made in libvrt's upstream commit 396c4d34.
Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=963161
---
virtinst/util.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/virtinst/util.py b/virtinst/util.py
index 0781600..2529ba6 100644
--- a/virtinst/util.py
+++ b/virtinst/util.py
@@ -1,5 +1,5 @@
#
-# Copyright 2006 Red Hat, Inc.
+# Copyright 2006, 2013 Red Hat, Inc.
# Jeremy Katz <katzj at redhat.com>
#
# This program is free software; you can redistribute it and/or modify
@@ -514,6 +514,8 @@ def randomUUID(conn):
return "00000000-1111-2222-3333-444444444444"
u = [random.randint(0, 255) for ignore in range(0, 16)]
+ u[7] = (u[7] & 0x0F) | (4 << 4)
+ u[9] = (u[9] & 0x3F) | (2 << 6)
return "-".join(["%02x" * 4, "%02x" * 2, "%02x" * 2, "%02x" * 2,
"%02x" * 6]) % tuple(u)
--
1.8.2.1
More information about the virt-tools-list
mailing list