I had the same problem and I edited
/etc/NetworkManager/dispatcher.d/01ifupdown to execute run-parts in
backgound. I'm supposing that scripts should be indipendent and can run
in any order. This way, I prevent any other script to block and timeout.

in  /etc/NetworkManager/dispatcher.d/01ifupdown

...
   up|vpn-up)
        export MODE="start"
        export PHASE="post-up"
        exec run-parts /etc/network/if-up.d &
        ;;
    down|vpn-down)
        export MODE="stop"
        export PHASE="post-down"
        exec run-parts /etc/network/if-post-down.d &
        ;;
...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1176710

Title:
  avahi-daemon script holds up run-parts in the if-up.d directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/avahi/+bug/1176710/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to