I found a bug in some of the perl pages where there was a link to

/network/systems/details/probes/index.pxt?sid=${sid} instad of the new path to

/rhn/systems/details/probes/ProbesList.do?sid=${sid}

I tracked it down to one of the modules and corrected the path this is
related to but not the actual fix for
https://bugzilla.redhat.com/show_bug.cgi?id=1053787
--- /home/pmarino/spacewalk-code/spacewalk/web/modules/sniglets/Sniglets/Servers.pm.orig	2014-01-15 15:50:09.651061366 -0500
+++ spacewalk/web/modules/sniglets/Sniglets/Servers.pm	2014-01-15 15:51:34.224715046 -0500
@@ -274,27 +274,27 @@
   if ($data->{MONITORING_STATUS} eq "CRITICAL") {
     $ret->{icon} = 'monitoring-crit';
     $ret->{status_str} = 'Critical probes';
-    $ret->{system_link} = "/network/systems/details/probes/index.pxt?sid=${sid}";
+    $ret->{system_link} = "/rhn/systems/details/probes/ProbesList.do?sid=${sid}";
   }
   elsif ($data->{MONITORING_STATUS} eq "WARNING") {
     $ret->{icon} = 'monitoring-warn';
     $ret->{status_str} = 'Warning probes';
-    $ret->{system_link} = "/network/systems/details/probes/index.pxt?sid=${sid}";
+    $ret->{system_link} = "/rhn/systems/details/probes/ProbesList.do?sid=${sid}";
   }
   elsif ($data->{MONITORING_STATUS} eq "UNKNOWN") {
     $ret->{icon} = 'monitoring-unknown';
     $ret->{status_str} = 'Unknown probes';
-    $ret->{system_link} = "/network/systems/details/probes/index.pxt?sid=${sid}";
+    $ret->{system_link} = "/rhn/systems/details/probes/ProbesList.do?sid=${sid}";
   }
   elsif ($data->{MONITORING_STATUS} eq "PENDING") {
     $ret->{icon} = 'monitoring-pending';
     $ret->{status_str} = 'Pending probes';
-    $ret->{system_link} = "/network/systems/details/probes/index.pxt?sid=${sid}";
+    $ret->{system_link} = "/rhn/systems/details/probes/ProbesList.do?sid=${sid}";
   }
   elsif ($data->{MONITORING_STATUS} eq "OK") {
     $ret->{icon} = 'monitoring-ok';
     $ret->{status_str} = 'OK';
-    $ret->{system_link} = "/network/systems/details/probes/index.pxt?sid=${sid}";
+    $ret->{system_link} = "/rhn/systems/details/probes/ProbesList.do?sid=${sid}";
   }
 
   return $ret;
_______________________________________________
Spacewalk-devel mailing list
Spacewalk-devel@redhat.com
https://www.redhat.com/mailman/listinfo/spacewalk-devel

Reply via email to