[Bug 1346431] Re: Mumble server does not accept connections when started at machine boot time, works when service is restarted manually
    Benjamin Xiao 
    1346431 at bugs.launchpad.net
       
    Tue Oct  7 10:30:34 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.
This is a workaround, but it is by no means a correct way to fix this
bug.
-- 
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/1346431
Title:
  Mumble server does not accept connections when started at machine boot
  time, works when service is restarted manually
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mumble/+bug/1346431/+subscriptions
    
    
More information about the Pkg-voip-maintainers
mailing list