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 | |
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
-rw-r--r-- | bootscripts/lfs/init.d/sendsignals | 4 | ||||
-rw-r--r-- | packages.ent | 2 |
2 files changed, 3 insertions, 3 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 diff --git a/packages.ent b/packages.ent index de1606d34..c75ec9b57 100644 --- a/packages.ent +++ b/packages.ent @@ -288,7 +288,7 @@ <!ENTITY less-ch6-du "2.9 MB"> <!ENTITY less-ch6-sbu "less than 0.1 SBU"> -<!ENTITY lfs-bootscripts-version "20100529"> <!-- Scripts depend on this format --> +<!ENTITY lfs-bootscripts-version "20100627"> <!-- Scripts depend on this format --> <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB"> <!-- Updated in Makefile --> <!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2"> <!ENTITY lfs-bootscripts-md5 "BOOTSCRIPTS-MD5SUM"> <!-- Updated in Makefile --> |