2015-02-03 09:47:17 +01:00
< ? php
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
/**
* @ package Include
* @ subpackage Clippy
*/
function clippy_servers_down () {
$return_tours = array ();
$return_tours [ 'first_step_by_default' ] = true ;
$return_tours [ 'help_context' ] = true ;
$return_tours [ 'tours' ] = array ();
//==================================================================
//Help tour about the monitoring with a ping (step 3)
//------------------------------------------------------------------
2015-02-03 09:49:35 +01:00
$return_tours [ 'tours' ][ 'servers_down' ] = array ();
$return_tours [ 'tours' ][ 'servers_down' ][ 'steps' ] = array ();
$return_tours [ 'tours' ][ 'servers_down' ][ 'steps' ][] = array (
2015-02-03 09:47:17 +01:00
'init_step_context' => true ,
'intro' => '<table>' .
'<tr>' .
'<td class="context_help_title">' .
__ ( 'All servers down' ) .
'</td>' .
'</tr>' .
'<tr>' .
'<td class="context_help_body">' .
2015-02-03 09:49:35 +01:00
__ ( 'Can you up all servers. You go to terminal in linux and execute the next command: "sudo /etc/init.d/pandora_server restart". It\'s possible need introduce root pass.' ) .
2015-02-03 09:47:17 +01:00
'</td>' .
'</tr>' .
'</table>'
);
2015-02-03 09:49:35 +01:00
$return_tours [ 'tours' ][ 'servers_down' ][ 'conf' ] = array ();
$return_tours [ 'tours' ][ 'servers_down' ][ 'conf' ][ 'autostart' ] = true ;
$return_tours [ 'tours' ][ 'servers_down' ][ 'conf' ][ 'show_bullets' ] = 0 ;
$return_tours [ 'tours' ][ 'servers_down' ][ 'conf' ][ 'show_step_numbers' ] = 0 ;
2015-02-03 09:47:17 +01:00
//==================================================================
return $return_tours ;
}
?>