diff options
author | DJ Lucas <dj@linuxfromscratch.org> | 2010-06-27 07:05:07 +0000 |
---|---|---|
committer | DJ Lucas <dj@linuxfromscratch.org> | 2010-06-27 07:05:07 +0000 |
commit | c8595ed6458eee262e330e2a2554f0e3fab51648 (patch) | |
tree | eb2b5265d8a021e8b01a131443a2bb0eddad0281 /bootscripts | |
parent | 281b7d9b77eb2513440d17d8da88902b6702c6e8 (diff) |
Oops, previous commit wasn't POSIX compliant
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9323 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/contrib/lsb-v3/init.d/sendsignals | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootscripts/contrib/lsb-v3/init.d/sendsignals b/bootscripts/contrib/lsb-v3/init.d/sendsignals index ce42c87ef..95b26ceb9 100644 --- a/bootscripts/contrib/lsb-v3/init.d/sendsignals +++ b/bootscripts/contrib/lsb-v3/init.d/sendsignals @@ -22,7 +22,7 @@ case "${1}" in killall5 -15 error_value=${?} # Account for successful return value of 2 - if [ ${error_value} == 2 ] + if [ ${error_value} = 2 ] error_value="0" fi sleep 3 @@ -34,7 +34,7 @@ case "${1}" in killall5 -9 error_value=${?} # Account for successful return value of 2 - if [ ${error_value} == 2 ] + if [ ${error_value} = 2 ] error_value="0" fi |