slackbuilds_ponce/network/murmur
James Geboski 5f699e9d8f network/murmur: Fixed CFLAGS and REQUIRES.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2012-12-11 16:23:08 -05:00
..
doinst.sh
murmur.info network/murmur: Fixed CFLAGS and REQUIRES. 2012-12-11 16:23:08 -05:00
murmur.logrotate network/murmur: Fixed logrotate script (added "su" directive) 2012-09-12 18:06:32 -05:00
murmur.SlackBuild network/murmur: Fixed CFLAGS and REQUIRES. 2012-12-11 16:23:08 -05:00
rc.murmur
README
slack-desc

Murmur is the VoIP server component for Mumble. Murmur is
installed in a system-wide fashion, but can also be run by
individual users. Each murmur process supports multiple virtual
servers, each with their own user base and channel list.
Administration of murmur is done through D-Bus.

NOTE: If you're upgrading from 1.1.4, the SlackBuild has changed:
      /var/{lib,log,run}/mumble-server moved to /var/{lib,log,run}/murmur

This script requires the system to have a murmur user and group:

  # groupadd -g 261 murmur
  # useradd -g murmur -u 261 -d /var/lib/murmur -s /bin/false murmur

To use a different user and/or group:

  # MURMUR_USER=user MURMUR_GROUP=group ./murmur.SlackBuild

To run murmur at boot:

  # chmod +x /etc/rc.d/rc.murmur

  Add the following to /etc/rc.d/rc.local:
  
  if [ -x /etc/rc.d/rc.murmur ]; then
    /etc/rc.d/rc.murmur start
  fi