diff options
author | Karel Kočí <cynerd@email.cz> | 2015-09-15 09:52:25 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-11-07 11:45:16 +0100 |
commit | 9a999c599dad8375d66531bd20c9e4ea0b642845 (patch) | |
tree | 7015a15d0176f9d590fc53e31a840a2b85ae0650 /mcwrapper.conf | |
parent | e4b0c7f50efbe0c42aa933cb58a86a44367c1140 (diff) | |
download | mcserver-wrapper-9a999c599dad8375d66531bd20c9e4ea0b642845.tar.gz mcserver-wrapper-9a999c599dad8375d66531bd20c9e4ea0b642845.tar.bz2 mcserver-wrapper-9a999c599dad8375d66531bd20c9e4ea0b642845.zip |
Implement new module printconf
Diffstat (limited to 'mcwrapper.conf')
-rw-r--r-- | mcwrapper.conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mcwrapper.conf b/mcwrapper.conf new file mode 100644 index 0000000..a07b594 --- /dev/null +++ b/mcwrapper.conf @@ -0,0 +1,14 @@ +# This is exaple configuration for mcwrapper +# Use Python3 syntax to specify configuration. +# For full list of configuration options refer to documentation. + +modules = {'say', 'argmodules', 'list-modules', 'printconf'} +identifier = 'srv' + +server = dict() +server["srv"] = { + "command": "cd srv && java -jar mcs.jar nogui", + "modules": {'status', 'players'}, + "folder": '/dev/shm/mcwrapper-srv', + "logOutput": False, + } |