master
David Mikluš 2 years ago
commit 1e3ab21fe7
  1. 17
      main.yml

@ -0,0 +1,17 @@
---
- name: "Playing on localhost"
hosts: localhost
connection: local
tasks:
- name: "Add ts3 repository"
shell: "add-apt-repository ppa:materieller/teamspeak3"
register: "output"
- debug: var=output.stdout_lines
- name: "Apt update"
shell: "apt update"
- name: "Install ts3 client"
shell: "apt install teamspeak3-client"
Loading…
Cancel
Save