diff options
author | Tharre <tharre3@gmail.com> | 2018-09-13 21:06:28 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-09-13 21:06:28 +0200 |
commit | 552bca0df91ee4e09152d3a2548d7157bad2c59a (patch) | |
tree | 6ea3c291e5219f3d36479529fbc7b5904f047b5a /defaults | |
parent | d2e5bd2af3fcdd003d5f4712aa314de6e1b1e647 (diff) | |
download | ansible-teamspeak-552bca0df91ee4e09152d3a2548d7157bad2c59a.tar.gz ansible-teamspeak-552bca0df91ee4e09152d3a2548d7157bad2c59a.tar.xz ansible-teamspeak-552bca0df91ee4e09152d3a2548d7157bad2c59a.zip |
Create skeleton for teamspeak_db to avoid errors
This fixes the following error:
The conditional check 'teamspeak_db.plugin == 'ts3db_mariadb'' failed.
The error was: error while evaluating conditional (teamspeak_db.plugin
== 'ts3db_mariadb'): 'teamspeak_db' is undefined
Diffstat (limited to 'defaults')
-rw-r--r-- | defaults/main.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/defaults/main.yml b/defaults/main.yml index 9ef0ad3..e6adae3 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -14,13 +14,21 @@ teamspeak: teamspeak_ini_enabled: no teamspeak_ini_filename: ts3server.ini -#by setting this to true you accept to license included with teamspeak +# by setting this to true you accept to license included with teamspeak teamspeak_accept_license: false teamspeak_use_license: no teamspeak_license_srcfile: files/licensekey.dat teamspeak_licensepath: +teamspeak_db: + host: + port: + username: + password: + database: + plugin: + teamspeak_network: voice: default_port: 9987 |