mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
42 lines
797 B
Diff
42 lines
797 B
Diff
Subject: [PATCH] ipmi-init: fix the arguments
|
|
|
|
The functions success/failure/warning defined in /etc/init.d/functions
|
|
(provided by initscripts) only accepts numeric argument as return code,
|
|
not a string.
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
|
|
---
|
|
ipmi.init | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/ipmi.init b/ipmi.init
|
|
index 2ebcd94..d8161c5 100644
|
|
--- a/ipmi.init
|
|
+++ b/ipmi.init
|
|
@@ -45,17 +45,17 @@ elif [ -r /etc/init.d/functions ]; then
|
|
case "$ACTION" in
|
|
success)
|
|
echo -n $*
|
|
- success "$*"
|
|
+ success 0
|
|
echo
|
|
;;
|
|
failure)
|
|
echo -n $*
|
|
- failure "$*"
|
|
+ failure 1
|
|
echo
|
|
;;
|
|
warning)
|
|
echo -n $*
|
|
- warning "$*"
|
|
+ warning 0
|
|
echo
|
|
;;
|
|
*)
|
|
--
|
|
1.9.1
|
|
|