mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Ignore error in ifdown script when determining status
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8887 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
0b258b4ae8
commit
a21a3c7cf0
@ -82,7 +82,7 @@ for file in ${FILES}; do
|
||||
done
|
||||
|
||||
if [ -z "${2}" ]; then
|
||||
link_status=`ip link show $1`
|
||||
link_status=`ip link show $1 2>/dev/null`
|
||||
if [ -n "${link_status}" ]; then
|
||||
if echo "${link_status}" | grep -q UP; then
|
||||
boot_mesg "Bringing down the ${1} interface..."
|
||||
|
@ -40,6 +40,9 @@
|
||||
<listitem>
|
||||
<para>2009-05-17</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Ignore error in ifdown script when determining status.</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>[bdubbs] - Add gettext upstream patches.
|
||||
Fixes
|
||||
|
@ -288,7 +288,7 @@
|
||||
<!ENTITY less-ch6-du "2.8 MB">
|
||||
<!ENTITY less-ch6-sbu "0.1 SBU">
|
||||
|
||||
<!ENTITY lfs-bootscripts-version "20090102"> <!-- Scripts depend on this format -->
|
||||
<!ENTITY lfs-bootscripts-version "20090517"> <!-- 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 -->
|
||||
|
Loading…
Reference in New Issue
Block a user