[Bug 997730] Re: does not start automatically

Benjamin Xiao 997730 at bugs.launchpad.net
Tue Oct 7 10:29:53 UTC 2014


I have managed to workaround the issue by creating a NetworkManager
dispatcher.d script. It basically restarts the mumble-server when it
detects that my connection is up.

Put this script into /etc/NetworkManager/dispatcher.d/90mumblerestart
=============================================================

#!/bin/sh -e

IF=$1
STATUS=$2

if [ "$IF" = "em1" ]
then
        case "$STATUS" in
                up)
                        service mumble-server restart
                ;;
                *)
                ;;
        esac
fi

====================================================

Of course, replace em1 with whatever network interface you're using.
This script works around the problem for me and I am able to connect to
the mumble-server whenever I restart. The only downside is that whenever
you disconnect/reconnect on your connection, the mumble server will get
restarted, but I figured that if you're doing that all clients will be
dropped anyways so it really makes no difference.

-- 
You received this bug notification because you are a member of Debian
VoIP Team, which is subscribed to mumble in Ubuntu.
https://bugs.launchpad.net/bugs/997730

Title:
  does not start automatically

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



More information about the Pkg-voip-maintainers mailing list