Displaying 20 results from an estimated 1000 matches similar to: "CEEA-2012:0530 CentOS 6 qpid Update"
2012 May 01
0
CentOS-announce Digest, Vol 87, Issue 1
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2012 Sep 20
0
CESA-2012:1269 Moderate CentOS 6 qpid Update
CentOS Errata and Security Advisory 2012:1269 Moderate
Upstream details at : https://rhn.redhat.com/errata/RHSA-2012-1269.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
293df4e212d169d2c52478b2370a4836f6e9583c04397bf087edb7a2c306946c python-qpid-0.14-11.el6_3.noarch.rpm
2012 Sep 20
0
CentOS-announce Digest, Vol 91, Issue 14
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
This patch updates dbomatic, taskomatic and host-register to use the
new C++ wrapped ruby QMF bindings. It also fixes a couple of bugs
along the way including the 0 cpu bug for host-register. This is a
compilation of work done by myself and Arjun Roy.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/db-omatic/db_omatic.rb | 111 ++++++-------
2010 Mar 16
0
[PATCH] Added the new Processors agent.
The Processors agent reports details regarding the processing power for
the managed node.
Defined the agent within schema.xml. Wrote the wrapper code to create
and populate an instance of the agent.
The properties for the Processors agent have also been trimmed back to
what is readily available via HAL.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 26
2009 Jul 15
1
[PATCH] Rename qmf-libvirt-example to libvirt-list.rb
This patch renames qmf-libvirt-example to libvirt-list and makes it
not repeat. Useful for debugging. File mode is also now 755.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/libvirt-list.rb | 65 +++++++++++++++++++++++++++++++++++++++
src/qmf-libvirt-example.rb | 72 --------------------------------------------
2 files changed, 65 insertions(+), 72 deletions(-)
2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
This is the first step towards separating the APIs from the means by
which they are carried between the remote and local system.
Added a few new classes and types:
* HostTransport - defines a type for talking to the Host
* Host - the public contract for the host APIs
* HostAgent - the QMF transport layer
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
.gitignore
2009 Jul 13
1
[PATCH: server] Added qmf matahari example to ovirt-server.
Just a quick script modeled after the libvirt-qpid example that dumps all
connected ovirt-node hardware info to standard out, for debug purposes.
---
src/qmf-matahari.example.rb | 50 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 50 insertions(+), 0 deletions(-)
create mode 100644 src/qmf-matahari.example.rb
diff --git a/src/qmf-matahari.example.rb
2009 Jul 31
2
[PATCH server] Removed workaround for qmf bug that yielded 0 cpus and 0 nics for nodes from time to time.
The original bug report is filed here:
http://issues.apache.org/jira/browse/QPID-1973
The svn revision 975209 and onwards for qpid contains the fix.
---
src/host-browser/host-register.rb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/host-browser/host-register.rb b/src/host-browser/host-register.rb
index 57c11b7..06d8553 100755
---
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
Created a new class to represent network interface devices, named
NetworkDeviceAgent.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 9 +-
src/host.cpp | 26 +++--
src/host.h | 4 +-
src/linux_platform.cpp | 70 +++++++++++
src/linux_platform.h | 4 +
src/networkdevice.cpp | 49 ++++++++
src/networkdevice.h |
2009 Jun 25
2
[PATCH] Fix dbomatic state changes.
This patch fixes state changes in dbomatic so that there is no
intermediate 'stopped' state after being unreachable or on startup
of dbomatic etc. Also fixes a number of smaller bugs around host
associations, state changes, etc.
Signed-off-by: Ian Main <imain at redhat.com>
---
src/db-omatic/db_omatic.rb | 85 +++++++++++++++++++++++++++++++-------------
1 files changed, 60
2009 Jul 21
1
[PATCH server] Fixed db-omatic so it doesn't segfault because of newer qmf api.
---
src/db-omatic/db_omatic.rb | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/db-omatic/db_omatic.rb b/src/db-omatic/db_omatic.rb
index 155ff5e..b5b7b81 100755
--- a/src/db-omatic/db_omatic.rb
+++ b/src/db-omatic/db_omatic.rb
@@ -270,10 +270,10 @@ class DbOmatic < Qpid::Qmf::Console
end
def object_props(broker, obj)
- target =
2009 Aug 10
1
[PATCH server] Fixed db-omatic so it doesn't die due to an unhandled ActiveRecord::StaleObjectError exception.
The error is caused by the save! method updating an object that another
thread (most likely in taskomatic) already updated.
In the case of this race condition, we retry saving. However, a proper fix
would involve fixing the locking.
---
src/db-omatic/db_omatic.rb | 23 ++++++++++++++++++++---
1 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/src/db-omatic/db_omatic.rb
2009 Aug 10
0
[PATCH server] Fixed db-omatic so it doesn't die due to unhandled exceptions related to saving db objects in update_host_state and update_domain_state.
The underlying issue has to do with optimistic locking for active record,
and contention between db-omatic and task-omatic. That still needs to be
fixed, especially since contention issues might get worse when the two
daemons are made multithreaded.
---
src/db-omatic/db_omatic.rb | 22 +++++++++++++++++++---
1 files changed, 19 insertions(+), 3 deletions(-)
diff --git
2009 May 25
1
Problems Configuring Ovirt
Greetings Everyone,
I have a question here regarding the ovirt node during boot. I have
configured ovirt-server with all the procedures followed from wiki and
finished each successfully. Also i tried booting one of the nodes with
ovirt-node image through PXE boot. The machine which i booted got an dhcp IP
(hostname) and was listed in the ovirt web gui. But there is a issue i have
been seeing
2009 Jul 31
1
problem with kerberos (I think)
Hi all,
I've got some problems to make work oVirt.
I've installed a Fedora 10 VM the lightest possible (nothing checked, even based) and installed after some packages (wget, sudo, acpid,...) and updated the system.
By the way, acpid should be a dependency of ovirt-installer because the installation fails if it's not available.
I've then installed ovirt (ovirt-server-installer
2009 May 15
0
[PATCH server] Starting of new ovirt QMF API.
This is the new ovirt agent that implements the QMF API. This is just
its humble beginnings. The goal was to implement the create VM method on
VMs but it turns out we need to specify the VM pool in order to do that.
This is currently hardcoded to '5' and works locally but would likely not
work elsewhere. What does work well is listing/querying of existing VMs.
There is still lots of
2012 Apr 16
0
CEBA-2012:0485 CentOS 6 fence-virt Update
CentOS Errata and Bugfix Advisory 2012:0485
Upstream details at : https://rhn.redhat.com/errata/RHBA-2012-0485.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
d4ab325868c59eab68b657654fc3af9c55498c3f085c891e9e34c2ca620ce8a8 fence-virt-0.2.3-5.1.el6_2.i686.rpm
2010 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
There was no valid reason to keep this set of APIs in their own agent
and class, so those have been eliminated.
A new HostListener method, HostListener::updated(), was added. It is via
this method that the Host will notify all transports that the load
average statistic is updated on the host.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 11
2012 Apr 26
0
CentOS-announce Digest, Vol 86, Issue 15
Send CentOS-announce mailing list submissions to
centos-announce at centos.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.centos.org/mailman/listinfo/centos-announce
or, via email, send a message with subject or body 'help' to
centos-announce-request at centos.org
You can reach the person managing the list at
centos-announce-owner at centos.org
When