Changeset b875e19


Ignore:
Timestamp:
03/25/2017 05:48:04 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
c9ac649
Parents:
d83fd51
Message:

Update to lfs-bootscripts-20170825. Fix a scope issue in the rc script. Thanks to quesker in #lfs-support for the report and subsequent testing.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11210 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    rd83fd51 rb875e19  
     12017-03-25 DJ Lucas <dj@linuxfromscratch.org>
     2   * Bash-4.4 changes no longer allow continue in function to pass to calling
     3     loop.
     4
    152015-02-22 Bruce Dubbs <bdubbs@linuxfromscratch.org>
    26   * Cosmetic changes to network scripts' output
  • bootscripts/lfs/init.d/rc

    rd83fd51 rb875e19  
    3838   if [ ! -f ${i} ]; then
    3939      log_warning_msg "${i} is not a valid symlink."
    40       continue
     40      SCRIPT_STAT="1"
    4141   fi
    4242
    4343   if [ ! -x ${i} ]; then
    4444      log_warning_msg "${i} is not executable, skipping."
    45       continue
     45      SCRIPT_STAT="1"
    4646   fi
    4747}
     
    151151   do
    152152      check_script_status
     153      if [ "${SCRIPT_STAT}" == "1" ]; then
     154         SCRIPT_STAT="0"
     155         continue
     156      fi
    153157
    154158      suffix=${i#/etc/rc.d/rc$runlevel.d/K[0-9][0-9]}
     
    193197
    194198   check_script_status
     199      if [ "${SCRIPT_STAT}" == "1" ]; then
     200         SCRIPT_STAT="0"
     201         continue
     202      fi
    195203
    196204   case ${runlevel} in
  • bootscripts/lfs/lib/services/init-functions

    rd83fd51 rb875e19  
    5454BOOTLOG=/run/bootlog
    5555KILLDELAY=3
     56SCRIPT_STAT="0"
    5657
    5758# Set any user specified environment variables e.g. HEADLESS
  • chapter01/changelog.xml

    rd83fd51 rb875e19  
    4343    appropriate for the entry or if needed the entire day's listitem.
    4444-->
     45    <listitem>
     46      <para>2017-03-25</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[dj] - Update to lfs-bootscripts-20170825. Fix a scope issue in
     50          the rc script. Thanks to "quesker" in #lfs-support for the report and
     51          subsequent testing.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
    4556    <listitem>
    4657      <para>2017-03-18</para>
  • general.ent

    rd83fd51 rb875e19  
    1 <!ENTITY version         "SVN-20170318">
     1<!ENTITY version         "SVN-20170325">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20170318-systemd">
     6<!ENTITY versiond        "20170325-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "March 18, 2017">
     10<!ENTITY releasedate     "March 25, 2017">
    1111
    1212<!ENTITY copyrightdate   "1999-2017"><!-- jhalfs needs a literal dash, not &ndash; -->
  • packages.ent

    rd83fd51 rb875e19  
    359359<!ENTITY less-ch6-sbu "less than 0.1 SBU">
    360360
    361 <!ENTITY lfs-bootscripts-version "20170318">              <!-- Scripts depend on this format -->
     361<!ENTITY lfs-bootscripts-version "20170325">              <!-- Scripts depend on this format -->
    362362<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">       
    363363<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
Note: See TracChangeset for help on using the changeset viewer.