Comment 62 for bug 6841

Revision history for this message
Debian Bug Importer (debzilla) wrote :

Message-ID: <email address hidden>
Date: Mon, 27 Sep 2004 09:22:17 +0200
From: Javier =?iso-8859-1?Q?Fern=E1ndez-Sanguino_Pe=F1a?= <email address hidden>
To: <email address hidden>, <email address hidden>
Subject: Reassigning this bugs to netbase

--FkmkrVfFsRoUs1wW
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

reassign 208700 netbase
retitle 208700 netbase: Please add --exclude=lo to /etc/init.d/networking
tags 208700 patch
thanks

Bugs #256680, #208700, #254705 and #273543 all relate to the use of 'ifdown
-a' in /etc/init.d/networking. In order to avoid this issue netbase's
networking script should be changed as shown in the patch attached so that
'lo' is always excluded when running ifdown.

If this patch is applied netbase should Depends: ifupdown ( >=0.6.4-4.9 )

Thanks

Javier

--FkmkrVfFsRoUs1wW
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="ifdownexclude.diff"

--- networking.orig 2004-09-27 09:19:18.000000000 +0200
+++ networking 2004-09-27 09:19:53.000000000 +0200
@@ -82,7 +82,7 @@
             echo "NOT deconfiguring network interfaces: network shares still mounted."
         else
             echo -n "Deconfiguring network interfaces..."
- ifdown -a
+ ifdown --exclude=lo -a
      echo "done."
         fi
  ;;
@@ -91,7 +91,7 @@
         doopt syncookies no
         doopt ip_forward no
         echo -n "Reconfiguring network interfaces..."
- ifdown -a
+ ifdown --exclude=lo -a
         ifup -a
  echo "done."
  ;;

--FkmkrVfFsRoUs1wW--