mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-20 04:14:58 +02:00
Keep Linux Standard Base compatibility on non-SuSE platform
This commit is contained in:
parent
84485d8f85
commit
03e40817b0
@ -42,11 +42,16 @@ then
|
||||
. /etc/rc.status
|
||||
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; }
|
||||
|
||||
# Define part of rc functions for non-suse systems
|
||||
function rc_status () {
|
||||
RETVAL=$?
|
||||
case $1 in
|
||||
-v) RETVAL=0;;
|
||||
esac
|
||||
}
|
||||
function rc_exit () { exit $RETVAL; }
|
||||
function rc_failed () { RETVAL=${1:-1}; }
|
||||
RETVAL=0
|
||||
fi
|
||||
|
||||
# This function replace pidof, not working in the same way in different linux distros
|
||||
|
@ -30,11 +30,16 @@ then
|
||||
. /etc/rc.status
|
||||
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; }
|
||||
|
||||
# Define part of rc functions for non-suse systems
|
||||
function rc_status () {
|
||||
RETVAL=$?
|
||||
case $1 in
|
||||
-v) RETVAL=0;;
|
||||
esac
|
||||
}
|
||||
function rc_exit () { exit $RETVAL; }
|
||||
function rc_failed () { RETVAL=${1:-1}; }
|
||||
RETVAL=0
|
||||
fi
|
||||
|
||||
function get_pid {
|
||||
|
Loading…
x
Reference in New Issue
Block a user