diff options
Diffstat (limited to 'tasks/install_license.yml')
-rw-r--r-- | tasks/install_license.yml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tasks/install_license.yml b/tasks/install_license.yml deleted file mode 100644 index 25c9365..0000000 --- a/tasks/install_license.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -# License install tasks for role teamspeak - -- name: "License : Create directory for license" - file: - path: "{{ teamspeak_licensepath }}" - state: directory - when: teamspeak_licensepath is not none - -- name: "License : Copy the license file" - copy: - src: "{{ teamspeak_license_srcfile }}" - dest: "{{ teamspeak_licensepath if teamspeak_licensepath is not none else ts3server_dir }}/licensekey.dat" - owner: "{{ teamspeak.user }}" - group: "{{ teamspeak.user }}" - mode: 0400 - notify: - - Restart TeamSpeak 3 Server |