diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-06-27 05:15:45 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-06-27 05:15:45 +0000 |
commit | 6d4552205c487ce20761686f75358cadd57b8c73 (patch) | |
tree | e157cd8c4e239a505fd04fb4dd80ab8ff8a0b893 /bootscripts | |
parent | d339c154861f89caa9b3e170a1c0ff3e91723355 (diff) |
Update sendsignals bootscript as a part of sysvinit update
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9320 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/lfs/init.d/sendsignals | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootscripts/lfs/init.d/sendsignals b/bootscripts/lfs/init.d/sendsignals index 4c3d05eda..f34b8f4d4 100644 --- a/bootscripts/lfs/init.d/sendsignals +++ b/bootscripts/lfs/init.d/sendsignals @@ -23,7 +23,7 @@ case "${1}" in sleep ${KILLDELAY} - if [ "${error_value}" = 0 ]; then + if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then echo_ok else echo_failure @@ -35,7 +35,7 @@ case "${1}" in sleep ${KILLDELAY} - if [ "${error_value}" = 0 ]; then + if [ "${error_value}" = 0 -o "${error_value}" = 2 ]; then echo_ok else echo_failure |