Public bug reported:

Binary package hint: ifupdown

Ifup should deal with non-zero exit codes from modprobe. My ipv6 setup
stopped working since ipv6 module is compiled into the kernel in Jaunty
so "modprobe -Q" fails to load it.

Replacing modprobe with this script restored ipv6 functionality:
===============
#!/bin/bash

/sbin/modprobe.orig "$@"
ret=$?

if [[ "$1" == "-Q" ]] ; then
        exit 0
fi

exit $ret
===============

** Affects: ifupdown (Ubuntu)
     Importance: Undecided
         Status: New


** Tags: ipv6 jaunty modprobe

-- 
"ifup" should deal with non-zero exit codes from modprobe
https://bugs.launchpad.net/bugs/337570
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

Reply via email to