Re: [Spacewalk-devel] SatOps: A Ruby script SOE manipulation tool

2012-07-18 Thread Aurelien Gouny
The correct URL is https://github.com/SatOps/SatOps Gilles Dubreuil 19 July 2012 2:15 PM The SatOps is a Ruby script using the Satellite XML/RPC API to export/import content, partially or entirely - well as much as possible.From an architecture viewpoint, the SatOps allo

[Spacewalk-devel] SatOps: A Ruby script SOE manipulation tool

2012-07-18 Thread Gilles Dubreuil
The SatOps is a Ruby script using the Satellite XML/RPC API to export/import content, partially or entirely - well as much as possible. >From an architecture viewpoint, the SatOps allows to scale up RHN >Satellite/Spacewalk topologies such as having a Master reference and >synchronising Slaves.

Re: [Spacewalk-devel] API Ruby scripts example

2012-07-18 Thread Gilles Dubreuil
> From: "Tomas Lestach" ... > I added a simple ruby example to the rhn/apidoc/scripts.jsp page > based on your > scripts. > Excellent news! Thanks. ___ Spacewalk-devel mailing list Spacewalk-devel@redhat.com https://www.redhat.com/mailman/listinfo/sp

Re: [Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Cliff Perry
On 07/18/2012 03:44 PM, Cliff Perry wrote: On 07/18/2012 09:49 AM, Paul Robert Marino wrote: I have noticed that we have gone past the expected release date set for spacewalk version 1.8 is there any updated ETA on when it it will be released. there are a lot of bug fixes in 1.8 that have not be

Re: [Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Cliff Perry
On 07/18/2012 09:49 AM, Paul Robert Marino wrote: I have noticed that we have gone past the expected release date set for spacewalk version 1.8 is there any updated ETA on when it it will be released. there are a lot of bug fixes in 1.8 that have not been back ported to 1.7 which are a show stopp

Re: [Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Jan Pazdziora
On Wed, Jul 18, 2012 at 12:43:32PM -0400, Paul Robert Marino wrote: > > Well a good example of a show stopper is the fact that as far as I > know there is still an issue in 1.7 that prevents you from properly > registering virtual machines if you are using PostgreSQL as your > database backend. Thi

Re: [Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Paul Robert Marino
On Wed, Jul 18, 2012 at 12:10 PM, Jan Pazdziora wrote: > On Wed, Jul 18, 2012 at 10:49:04AM -0400, Paul Robert Marino wrote: >> I have noticed that we have gone past the expected release date set >> for spacewalk version 1.8 is there any updated ETA on when it it will >> be released. >> there are

Re: [Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Jan Pazdziora
On Wed, Jul 18, 2012 at 10:49:04AM -0400, Paul Robert Marino wrote: > I have noticed that we have gone past the expected release date set > for spacewalk version 1.8 is there any updated ETA on when it it will > be released. > there are a lot of bug fixes in 1.8 that have not been back ported to >

Re: [Spacewalk-devel] API Ruby scripts example

2012-07-18 Thread Tomas Lestach
On Wednesday 18 of July 2012 02:51:22 Gilles Dubreuil wrote: > Thinking about adding Ruby script examples for Spacewalk API documentation. > Some people (Red Hat customers) have asked how to use Ruby to communicate > with the Spacewalk/RHN Satellite API. > > So what about having Ruby examples alon

[Spacewalk-devel] Is there an updated ETA on the release of spacewalk 1.8

2012-07-18 Thread Paul Robert Marino
I have noticed that we have gone past the expected release date set for spacewalk version 1.8 is there any updated ETA on when it it will be released. there are a lot of bug fixes in 1.8 that have not been back ported to 1.7 which are a show stoppers for many people. so I was wondering is there an

Re: [Spacewalk-devel] [PATCH 00/10] spacewalk & abrt integration

2012-07-18 Thread Jan Pazdziora
On Wed, Jul 18, 2012 at 03:38:08PM +0200, Richard Marko wrote: > Hi, > > this patchset adds support for collecting information about > application crashes handled by abrt. > > If spacewalk-abrt package is installed, rhn_check will > collect number of crashes and send it to the server via > XMLRPC

[Spacewalk-devel] [PATCH 10/10] Add translation strings for crash information

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- .../frontend/strings/jsp/StringResource_en_US.xml | 28 .../webapp/WEB-INF/pages/systems/sdc/overview.jsp |8 +++--- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/St

[Spacewalk-devel] [PATCH 07/10] Add Crashes class and database mapping

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- .../com/redhat/rhn/domain/server/Crashes.hbm.xml | 22 + .../src/com/redhat/rhn/domain/server/Crashes.java | 102 2 files changed, 124 insertions(+) create mode 100644 java/code/src/com/redhat/rhn/domain/server/Crashes.hbm.xml cre

[Spacewalk-devel] [PATCH 05/10] Add abrt data handling functionality

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- backend/server/handlers/xmlrpc/__init__.py |2 + backend/server/handlers/xmlrpc/abrt.py | 59 backend/server/rhnCapability.py|1 + 3 files changed, 62 insertions(+) create mode 100644 backend/server/handlers

[Spacewalk-devel] [PATCH 04/10] Add schema and migration files for rhnAbrtInfo table

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- schema/spacewalk/common/tables/rhnAbrtInfo.sql | 29 +++ .../111-rhnAbrtInfo_create.sql.oracle | 30 .../111-rhnAbrtInfo_create.sql.postgresql | 30 3 files changed, 89 inse

[Spacewalk-devel] [PATCH 09/10] Show crash count on system detail page

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- .../webapp/WEB-INF/pages/systems/sdc/overview.jsp | 20 1 file changed, 20 insertions(+) diff --git a/java/code/webapp/WEB-INF/pages/systems/sdc/overview.jsp b/java/code/webapp/WEB-INF/pages/systems/sdc/overview.jsp index 94eba0d..afed8c

[Spacewalk-devel] [PATCH 03/10] Add specfile for spacewalk-abrt

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- client/rhel/spacewalk-abrt/spacewalk-abrt.spec | 40 1 file changed, 40 insertions(+) create mode 100644 client/rhel/spacewalk-abrt/spacewalk-abrt.spec diff --git a/client/rhel/spacewalk-abrt/spacewalk-abrt.spec b/client/rhel/spacewa

[Spacewalk-devel] [PATCH 08/10] Update server class to use crash information

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- java/code/src/com/redhat/rhn/domain/server/Server.java | 15 +++ .../redhat/rhn/domain/server/Server_legacyUser.hbm.xml |3 +++ 2 files changed, 18 insertions(+) diff --git a/java/code/src/com/redhat/rhn/domain/server/Server.java b/java/code

[Spacewalk-devel] [PATCH 06/10] Update rhn_check to send abrt data to the server

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- client/rhel/rhn-client-tools/src/bin/rhn_check.py | 40 - 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/client/rhel/rhn-client-tools/src/bin/rhn_check.py b/client/rhel/rhn-client-tools/src/bin/rhn_check.py index 1a6747b..2d0

[Spacewalk-devel] [PATCH 02/10] Add makefiles for spacewalk-abrt

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- client/rhel/spacewalk-abrt/Makefile|6 + client/rhel/spacewalk-abrt/Makefile.spacewalk-abrt | 28 2 files changed, 34 insertions(+) create mode 100644 client/rhel/spacewalk-abrt/Makefile create mode 100644 client/r

[Spacewalk-devel] [PATCH 00/10] spacewalk & abrt integration

2012-07-18 Thread Richard Marko
Hi, this patchset adds support for collecting information about application crashes handled by abrt. If spacewalk-abrt package is installed, rhn_check will collect number of crashes and send it to the server via XMLRPC API (if server supports it). The data are stored for each system in rhnAbrtIn

[Spacewalk-devel] [PATCH 01/10] spacewalk-abrt initial

2012-07-18 Thread Richard Marko
Signed-off-by: Richard Marko --- client/rhel/spacewalk-abrt/abrt|1 + client/rhel/spacewalk-abrt/abrt.py | 21 + 2 files changed, 22 insertions(+) create mode 100644 client/rhel/spacewalk-abrt/abrt create mode 100644 client/rhel/spacewalk-abrt/abrt.py diff --git