From 49f236b73e9f3e954f1d2eec518ccb552ed25b09 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 24 Jan 2013 22:25:14 +0000 Subject: Remove more bashisms in scripts git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10104 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- bootscripts/lfs/init.d/console | 2 +- bootscripts/lfs/lib/services/ipv4-static | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bootscripts/lfs/init.d/console b/bootscripts/lfs/init.d/console index 17a59e8a3..1a4921005 100644 --- a/bootscripts/lfs/init.d/console +++ b/bootscripts/lfs/init.d/console @@ -32,7 +32,7 @@ # Native English speakers probably don't have /etc/sysconfig/console at all [ -r /etc/sysconfig/console ] && . /etc/sysconfig/console -function is_true() +is_true() { [ "$1" = "1" ] || [ "$1" = "yes" ] || [ "$1" = "true" ] } diff --git a/bootscripts/lfs/lib/services/ipv4-static b/bootscripts/lfs/lib/services/ipv4-static index daff3fe8b..2d9dad39c 100755 --- a/bootscripts/lfs/lib/services/ipv4-static +++ b/bootscripts/lfs/lib/services/ipv4-static @@ -42,7 +42,7 @@ fi case "${2}" in up) - if [ "$(ip addr show ${1} 2>/dev/null | grep ${IP}/)" == "" ]; then + if [ "$(ip addr show ${1} 2>/dev/null | grep ${IP}/)" = "" ]; then # Cosmetic output not needed for multiple services if ! $(echo ${SERVICE} | grep -q " "); then -- cgit v1.2.3-54-g00ecf