This whole bug is a race condition. The problem occurs when the computer does not have the time to setup its network interfaces, and the /etc/firestarter/firestarter.sh script is run during that period. I've got a (very) temporary solution (it worked for me) :
32,42c32,42 < if [ "$MASK" = "" -a "$1" != "stop" ]; then < echo "External network device $IF is not ready. Aborting.." < exit 2 < fi < < if [ "$NAT" = "on" ]; then < if [ "$INMASK" = "" -a "$1" != "stop" ]; then < echo "Internal network device $INIF is not ready. Aborting.." < exit 3 < fi < fi --- > #if [ "$MASK" = "" -a "$1" != "stop" ]; then > # echo "External network device $IF is not ready. Aborting.." > # exit 2 > #fi > > #if [ "$NAT" = "on" ]; then > # if [ "$INMASK" = "" -a "$1" != "stop" ]; then > # echo "Internal network device $INIF is not ready. Aborting.." > # exit 3 > # fi > #fi -- Firewall not persistent https://bugs.launchpad.net/bugs/59647 You received this bug notification because you are a member of Ubuntu Bugs, which is the bug contact for Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
