diff options
author | Stefan <stefan@sjoosten.nl> | 2016-08-23 16:34:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-23 16:34:45 +0200 |
commit | 5f98c5659e7341d07c849261abcf283184104568 (patch) | |
tree | 79f078b91ed8dece4638416016f662c6f7d7782c /templates/ts3server.ini.j2 | |
parent | 9c055a880110226dfae26db9a92a7d6c34b7bb11 (diff) | |
parent | 7a8008c94ce13515cd500d7b5ccfd1798690d765 (diff) | |
download | ansible-teamspeak-5f98c5659e7341d07c849261abcf283184104568.tar.gz ansible-teamspeak-5f98c5659e7341d07c849261abcf283184104568.tar.xz ansible-teamspeak-5f98c5659e7341d07c849261abcf283184104568.zip |
Merge pull request #10 from EggieCode/issue-e1
Patches to fix issue #1. Thank you.
Diffstat (limited to 'templates/ts3server.ini.j2')
-rw-r--r-- | templates/ts3server.ini.j2 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/ts3server.ini.j2 b/templates/ts3server.ini.j2 new file mode 100644 index 0000000..ee6d6f3 --- /dev/null +++ b/templates/ts3server.ini.j2 @@ -0,0 +1,17 @@ +machine_id={{ teamspeak_ini.machine_id }} + +default_voice_port={{teamspeak_ini.voice.default_port}} +voice_ip={{teamspeak_ini.voice.ip}} + +query_port={{teamspeak_ini.query.port}} +query_ip={{teamspeak_ini.query.ip}} + +filetransfer_port={{teamspeak_ini.filetransfer.port}} +filetransfer_ip={{teamspeak_ini.filetransfer.ip}} + +dbplugin={{ teamspeak_ini.db_plugin }} +dbpluginparameter={{ 'ts3db_mysql.ini' if teamspeak_ini.db_plugin == 'ts3db_mysql' else '' }} +dbsqlpath=sql/ +dbsqlcreatepath={{ 'create_mysql/' if teamspeak_ini.db_plugin == 'ts3db_mysql' else 'create_sqlite/' }} +logpath={{ teamspeak_ini.logpath }} +logquerycommands={{ teamspeak_ini.logquerycommands }} |