Public bug reported:

Binary package hint: acpi-support

After suspend the network interfaces won't get automatically upped
again. This gets corrected by changing "ifup" and "ifdown" to
"/sbin/ifdown" and "/sbin/ifup" in the files /etc/acpi/suspend.d/NN-
down-interfaces.sh and /etc/acpi/resume.d/NN-ifup.sh.

Corrected /etc/acpi/suspend.d/55-down-interfaces.sh :
#!/bin/sh

pccardctl eject

# Get rid of any currently running dhclients
killall dhclient dhclient3 2>/dev/null

# Find the currently running network interfaces...
INTERFACES=`/sbin/ifconfig | awk '/^[^ ]+/ {print $1}'`

# And shut them down
for x in $INTERFACES; do
    /sbin/ifdown $x;
    /sbin/ifconfig $x down;
done

And a corrected /etc/acpi/resume.d/62-ifup.sh :
#!/bin/sh

# Bring up the interfaces (this should probably be left up to some policy
# manager, but at the moment we just bring back whatever we ifdowned)
for x in $INTERFACES; do
    /sbin/ifup $x &
done

** Affects: acpi-support (Ubuntu)
     Importance: Undecided
         Status: Unconfirmed

-- 
missing path in /etc/acpi/suspend.d/nn-down-interfaces.sh
https://launchpad.net/bugs/74947

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to