aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/openipmi/files/ipmi-init-fix-the-arguments.patch
blob: 51a398ba5319094a2a69565c72811eb8f3a6a2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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