Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/charleszlu/murmur-info.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatenom <natenom@natenom.name>2012-09-06 20:47:07 +0400
committerNatenom <natenom@natenom.name>2012-09-06 20:47:07 +0400
commitbba2b55493e3bc779cdd4869a2998043cd6d438a (patch)
tree163fa32066f8352dfdc6c0f3ddd498c78a2d8224
parent3f78cc97cb7ba7122620ae68b3e9bdd64bccdb74 (diff)
icesecretread -> icesecret
-rw-r--r--murmur-munin.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/murmur-munin.py b/murmur-munin.py
index b9ff75a..96b775f 100644
--- a/murmur-munin.py
+++ b/murmur-munin.py
@@ -18,8 +18,8 @@ iceport=6502
#Ice Password to get read access.
#If there is no such var in your murmur.ini, this can have any value.
-#You can also use the icesecretwrite of your server.
-icesecretread="secureme"
+#You can use the values of icesecret, icesecretread or icesecretwrite in your murmur.ini
+icesecret="secureme"
#MessageSizeMax; increase this value, if you get a MemoryLimitException.
# Also check this value in murmur.ini of your Mumble-Server.
@@ -36,7 +36,7 @@ id = Ice.InitializationData()
id.properties = props
ice = Ice.initialize(id)
-ice.getImplicitContext().put("secret", icesecretread)
+ice.getImplicitContext().put("secret", icesecret)
import Murmur