aboutsummaryrefslogtreecommitdiff
path: root/network/murmur/README
diff options
context:
space:
mode:
authorEdward W. Koenig <kingbeowulf@linuxgalaxy.org>2022-02-17 16:50:03 -0800
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-02-19 12:09:21 +0700
commitdbadd606d665c087176e8c2715c0e9dd538f7ce9 (patch)
treeebf5ede2b64d404a5e4e5b4d160a957945b10599 /network/murmur/README
parent1daf973571d0002e5f2d5f094dce9a4ed18ceebb (diff)
network/mumble-server: Renamed murmur to mumble-server
Signed-off-by: Edward W. Koenig <kingbeowulf@linuxgalaxy.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/murmur/README')
-rw-r--r--network/murmur/README24
1 files changed, 0 insertions, 24 deletions
diff --git a/network/murmur/README b/network/murmur/README
deleted file mode 100644
index 07923902c8d7d..0000000000000
--- a/network/murmur/README
+++ /dev/null
@@ -1,24 +0,0 @@
-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.
-
-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