backend/server/handlers/xmlrpc/registration.py | 2 ++ backend/spacewalk-backend.spec | 5 ++++- rel-eng/packages/spacewalk-backend | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-)
New commits: commit 5fd803b796801d889a8ff87d4250e1a56306b81f Author: Aron Parsons aronparsons@gmail.com Date: Thu Dec 5 19:11:00 2013 -0500
Automatic commit of package [spacewalk-backend] release [2.1.38-1].
diff --git a/backend/spacewalk-backend.spec b/backend/spacewalk-backend.spec index 98110b1..33af959 100644 --- a/backend/spacewalk-backend.spec +++ b/backend/spacewalk-backend.spec @@ -11,7 +11,7 @@ Name: spacewalk-backend Summary: Common programs needed to be installed on the Spacewalk servers/proxies Group: Applications/Internet License: GPLv2 -Version: 2.1.37 +Version: 2.1.38 Release: 1%{?dist} URL: https://fedorahosted.org/spacewalk Source0: https://fedorahosted.org/releases/s/p/spacewalk/%%7Bname%7D-%%7Bversion%7D.t... @@ -628,6 +628,9 @@ rm -f %{rhnconf}/rhnSecret.py* %{pythonrhnroot}/satellite_tools/exporter/xmlWriter.py*
%changelog +* Thu Dec 05 2013 Aron Parsons aronparsons@gmail.com 2.1.38-1 +- detect RDO instances as QEMU guests + * Fri Nov 29 2013 Michael Mraka michael.mraka@redhat.com 2.1.37-1 - convert empty uuid to None
diff --git a/rel-eng/packages/spacewalk-backend b/rel-eng/packages/spacewalk-backend index 7c76f20..a4b7768 100644 --- a/rel-eng/packages/spacewalk-backend +++ b/rel-eng/packages/spacewalk-backend @@ -1 +1 @@ -2.1.37-1 backend/ +2.1.38-1 backend/
commit 8d7ea3db19f487d9d72436561229e8673a685258 Author: Aron Parsons aronparsons@gmail.com Date: Thu Dec 5 19:09:12 2013 -0500
detect RDO instances as QEMU guests
diff --git a/backend/server/handlers/xmlrpc/registration.py b/backend/server/handlers/xmlrpc/registration.py index 5065efb..62dcd55 100644 --- a/backend/server/handlers/xmlrpc/registration.py +++ b/backend/server/handlers/xmlrpc/registration.py @@ -66,6 +66,8 @@ def parse_smbios(smbios): elif (manufacturer == 'Red Hat' and product == 'RHEV Hypervisor' and uuid is not None): return (rhnVirtualization.VirtualizationType.QEMU, uuid) + elif manufacturer.startswith('Red Hat') and product == 'OpenStack Nova' and uuid is not None: + return (rhnVirtualization.VirtualizationType.QEMU, uuid) elif manufacturer == 'Microsoft Corporation' and \ product == 'Virtual Machine': if uuid is None:
spacewalk-commits@lists.fedorahosted.org