Changeset f780602


Ignore:
Timestamp:
06/09/2021 03:45:10 AM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib
Children:
6a72404
Parents:
e3835ac (diff), 25596ffb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/ChangeLog

    re3835ac rf780602  
     12021-06-08 Bruce Dubbs <bdubbs@linuxfromscratch.org>
     2   * When shutting down the network, ignore invalid interfaces
     3     or interfaces that are not UP.
     4
    152021-06-02 Thomas Trepl <thomas@linuxfromscratch.org>
    26   * Prevent sendsignals from killing an active mdmon
     
    610   * Use a better methog for killproc to remove a dead pid file.
    711   * Clarify what signals killproc accepts.
    8    * Thanks to input an ddiscussion from Scott Andrews.
     12   * Thanks to input and discussion from Scott Andrews.
    913
    10142021-02-01 Bruce Dubbs <bdubbs@linuxfromscratch.org>
  • bootscripts/lfs/init.d/network

    re3835ac rf780602  
    3636
    3737         # Skip if $file is * (because nothing was found)
    38          if [ "${interface}" = "*" ]
    39          then
    40             continue
    41          fi
     38         if [ "${interface}" = "*" ]; then continue; fi
    4239
    4340         /sbin/ifup ${interface}
     
    6259
    6360         # Skip if $file is * (because nothing was found)
    64          if [ "${interface}" = "*" ]
    65          then
    66             continue
    67          fi
     61         if [ "${interface}" = "*" ]; then continue; fi
     62
     63         # See if interface exists
     64         if [ ! -e /sys/class/net/$interface ]; then continue; fi
     65
     66         # Is interface UP?
     67         ip link show $interface 2>/dev/null | grep -q "state UP"
     68         if [ $? -ne 0 ];  then continue; fi
    6869
    6970         /sbin/ifdown ${interface}
  • chapter01/changelog.xml

    re3835ac rf780602  
    4646    -->
    4747    <listitem revision="sysv">
     48      <para>2021-06-08</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[bdubbs] - Make shutting down the netwrok more robust.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
     56    <listitem revision="sysv">
    4857      <para>2021-06-02</para>
    4958      <itemizedlist>
  • packages.ent

    re3835ac rf780602  
    385385<!ENTITY less-fin-sbu "less than 0.1 SBU">
    386386
    387 <!ENTITY lfs-bootscripts-version "20210602">      <!-- Scripts depend on this format -->
     387<!ENTITY lfs-bootscripts-version "20210608">      <!-- Scripts depend on this format -->
    388388<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">       
    389389<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.xz">
Note: See TracChangeset for help on using the changeset viewer.