Custom packaging scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mykyta Solomko d05d4b968b UPD: gitea-1.14.3 (#80) 4 years ago
..
README murmur initial commit 6 years ago
doinst.sh murmur initial commit 6 years ago
murmur.SlackBuild UPD: murmur-1.3.1 (#54) 5 years ago
murmur.dbus murmur initial commit 6 years ago
murmur.info UPD: murmur-1.3.1 (#54) 5 years ago
murmur.logrotate murmur initial commit 6 years ago
rc.murmur murmur initial commit 6 years ago
slack-desc murmur initial commit 6 years ago
slack-required murmur version bump 1.2.11 6 years ago

README

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