summaryrefslogtreecommitdiffstats
path: root/network/murmur/README
diff options
context:
space:
mode:
Diffstat (limited to 'network/murmur/README')
-rw-r--r--network/murmur/README24
1 files changed, 20 insertions, 4 deletions
diff --git a/network/murmur/README b/network/murmur/README
index 04d71e391f..bebdb01949 100644
--- a/network/murmur/README
+++ b/network/murmur/README
@@ -4,8 +4,24 @@ 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.
-To run murmur at boot, add the following to /etc/rc.d/rc.local:
+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
-if [ -x /etc/rc.d/rc.murmur ]; then
- /etc/rc.d/rc.murmur start
-fi
+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