Jump to content
Mumble forums

custom init script


at_he
 Share

Recommended Posts

hi .. i run centos, it has no package for murmur so i downloaded static murmur (which has no init script) and tried to run


i found an init script at http://mumble.sourceforge.net/Murmur_Init_Script but lacks the "status" function

i added one .. just between lines

 

    ;;
 *)

insert this code

 

  status)
   MURMURPID=`pidof $MURMURBIN`
   if (( $? ))
   then
       echo murmur is NOT running
   else
       echo murmur is running, pid=$MURMURPID
   fi
   ;;

and add "|status" to the line

 

    echo "Usage: $0 {start|stop|restart}"

 

p.s.: i found no way to register an account at main page mumble wiki to comment this issue

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...