diff options
author | Stefan Joosten <stefan@sjoosten.nl> | 2016-08-23 20:34:32 +0200 |
---|---|---|
committer | Stefan Joosten <stefan@sjoosten.nl> | 2016-08-23 20:34:32 +0200 |
commit | cf50f8c7d35497509d592dd309906503c8d994e5 (patch) | |
tree | 1080a8fc28755db9c099e1dd8cdafb3e4c5f5b93 /defaults | |
parent | 4088a3ec70d18f7174723609af79587cf65a0ed7 (diff) | |
download | ansible-teamspeak-cf50f8c7d35497509d592dd309906503c8d994e5.tar.gz ansible-teamspeak-cf50f8c7d35497509d592dd309906503c8d994e5.tar.xz ansible-teamspeak-cf50f8c7d35497509d592dd309906503c8d994e5.zip |
Fix issue #1.
Rewrote parts of Egbert Verhage's patches. Thank you again for the work.
This work adds the possibility to generate a INI-style configuration file for the TeamSpeak 3 Server.
The scope is limited to creating and use of the INI config file, and ability to configure network settings, the machine ID and default creation of the first virtual server.
More features can follow soon after.
Diffstat (limited to 'defaults')
-rw-r--r-- | defaults/main.yml | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index ca9739a..a4ff7e4 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -10,21 +10,20 @@ teamspeak: version: "3.0.12.4" checksum: "sha256:6bb0e8c8974fa5739b90e1806687128342b3ab36510944f576942e67df7a1bd9" keep: 2 - ini_file: ts3server.ini -teamspeak_ini: - disabled: true - machine_id: "" +teamspeak_ini_enabled: no +teamspeak_ini_filename: ts3server.ini + +teamspeak_network: voice: - ip: 0.0.0.0 - create_default: true default_port: 9987 + ip: 0.0.0.0 filetransfer: + port: 30033 ip: 0.0.0.0 - port: 10011 query: + port: 10011 ip: 0.0.0.0 - port: 33003 - db_plugin: ts3db_sqlite3 - logpath: /var/log/teamspeak3-server - logquerycommands: false + +teamspeak_machine_id: +teamspeak_create_default_virtualserver: yes |