[oe-commits] Chen Qi : lsb: de-bash scripts to remove bash dependency

git at git.openembedded.org git at git.openembedded.org
Fri Nov 29 13:28:34 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 4b13b99d4eaaf582cc71903bc2606023e8e6ad96
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=4b13b99d4eaaf582cc71903bc2606023e8e6ad96

Author: Chen Qi <Qi.Chen at windriver.com>
Date:   Fri Nov 29 20:48:13 2013 +0800

lsb: de-bash scripts to remove bash dependency

De-bash some script in lsb to make it not dependent on bash.

[YOCTO #5555]

Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-extended/lsb/lsb/lsb_killproc     | 2 +-
 meta/recipes-extended/lsb/lsb/lsb_log_message  | 2 +-
 meta/recipes-extended/lsb/lsb/lsb_pidofproc    | 2 +-
 meta/recipes-extended/lsb/lsb/lsb_start_daemon | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/meta/recipes-extended/lsb/lsb/lsb_killproc b/meta/recipes-extended/lsb/lsb/lsb_killproc
index e1121e4..866c1a9 100755
--- a/meta/recipes-extended/lsb/lsb/lsb_killproc
+++ b/meta/recipes-extended/lsb/lsb/lsb_killproc
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 . /etc/init.d/functions
 
diff --git a/meta/recipes-extended/lsb/lsb/lsb_log_message b/meta/recipes-extended/lsb/lsb/lsb_log_message
index 9daa9c8..a716518 100755
--- a/meta/recipes-extended/lsb/lsb/lsb_log_message
+++ b/meta/recipes-extended/lsb/lsb/lsb_log_message
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 . /etc/init.d/functions
 
diff --git a/meta/recipes-extended/lsb/lsb/lsb_pidofproc b/meta/recipes-extended/lsb/lsb/lsb_pidofproc
index ffc17bb..6d1fd0f 100755
--- a/meta/recipes-extended/lsb/lsb/lsb_pidofproc
+++ b/meta/recipes-extended/lsb/lsb/lsb_pidofproc
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 . /etc/init.d/functions
 
diff --git a/meta/recipes-extended/lsb/lsb/lsb_start_daemon b/meta/recipes-extended/lsb/lsb/lsb_start_daemon
index 05b6371..de62c23 100755
--- a/meta/recipes-extended/lsb/lsb/lsb_start_daemon
+++ b/meta/recipes-extended/lsb/lsb/lsb_start_daemon
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 . /etc/init.d/functions
 



More information about the Openembedded-commits mailing list