2010-02-27 Sancho Lerena <slerena@artica.es>
* util/tentacle_serverd, util/pandora_server: Fixed "stop" problem in debian/ubuntu, which was due a problem in redefinition of several LSB functions, stop function was not working fine and exit condition was ignored. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2432 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1e62c60690
commit
2bb079857f
|
@ -1,3 +1,10 @@
|
|||
2010-02-27 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* util/tentacle_serverd,
|
||||
util/pandora_server: Fixed "stop" problem in debian/ubuntu, which was
|
||||
due a problem in redefinition of several LSB functions, stop function
|
||||
was not working fine and exit condition was ignored.
|
||||
|
||||
2010-02-25 Sancho Lerena <slerena@artica.es>
|
||||
|
||||
* lib/PandoraFMS/Core.pm: Implemented new alert type "onChange".
|
||||
|
|
|
@ -38,9 +38,9 @@ then
|
|||
rc_reset
|
||||
else
|
||||
# Define rc functions for non-suse systems, "void" functions.
|
||||
function rc_status () (VOID=1;)
|
||||
function rc_exit () (exit;)
|
||||
function rc_failed () (VOID=1;)
|
||||
function rc_status () { VOID=1; }
|
||||
function rc_exit () { exit; }
|
||||
function rc_failed () { VOID=1; }
|
||||
|
||||
fi
|
||||
|
||||
|
|
|
@ -26,9 +26,9 @@ then
|
|||
rc_reset
|
||||
else
|
||||
# Define rc functions for non-suse systems, "void" functions.
|
||||
function rc_status () (VOID=1;)
|
||||
function rc_exit () (exit;)
|
||||
function rc_failed () (VOID=1;)
|
||||
function rc_status () { VOID=1; }
|
||||
function rc_exit () { exit; }
|
||||
function rc_failed () { VOID=1; }
|
||||
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue