mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-27 04:55:19 +00:00
Bashism:
possible bashism in arptables/etc/init.d/arptables line 14 (should be '.', not 'source'):
source /etc/init.d/functions
possible bashism in arptables/etc/init.d/arptables line 96 ($"foo" should be eval_gettext "foo"):
echo $"Usage $0 {start|stop|restart|condrestart|save|status}"
Use "." to replace of "source", and change /bin/bash to /bin/sh, the
echo $"foo" works well in our busybox.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
38 lines
857 B
Diff
38 lines
857 B
Diff
From cd312bc0e3686404428878d23b8888cba09a20e1 Mon Sep 17 00:00:00 2001
|
|
From: Robert Yang <liezhi.yang@windriver.com>
|
|
Date: Thu, 18 Sep 2014 19:46:58 -0700
|
|
Subject: [PATCH] arptables.sysv: remove bashism
|
|
|
|
Use "." to replace of "source", and change /bin/bash to /bin/sh, the
|
|
echo $"foo" works well in busybox.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
|
---
|
|
arptables.sysv | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/arptables.sysv b/arptables.sysv
|
|
index 7a90bd2..7710376 100644
|
|
--- a/arptables.sysv
|
|
+++ b/arptables.sysv
|
|
@@ -1,4 +1,4 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
#
|
|
# init script for arptables
|
|
#
|
|
@@ -11,7 +11,7 @@
|
|
#
|
|
# config: __SYSCONFIG__/arptables
|
|
|
|
-source /etc/init.d/functions
|
|
+. /etc/init.d/functions
|
|
# source /etc/sysconfig/network
|
|
|
|
# Check that networking is up.
|
|
--
|
|
1.7.9.5
|
|
|