blob: 17c90029c38522b773909fdae37f3f76548aa683 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Upstream-Status: Pending
2
3Subject: functions: avoid exit 1 which causes init scripts to fail
4
5Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
6---
7 rc.d/init.d/functions | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions
11index 6850046..11223f7 100644
12--- a/rc.d/init.d/functions
13+++ b/rc.d/init.d/functions
Patrick Williamsc0f7c042017-02-23 20:41:17 -060014@@ -597,6 +597,6 @@ if [ "$_use_systemctl" = "1" ]; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015 fi
16 fi
17
18-strstr "$(cat /proc/cmdline)" "rc.debug" && set -x
19+strstr "$(cat /proc/cmdline)" "rc.debug" && set -x || true
Patrick Williamsc0f7c042017-02-23 20:41:17 -060020 return 0
21
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022--
232.1.0
24