commit 1e3ab21fe77688df3d106ed0b7b7675b3e9502be Author: David Mikluš Date: Wed Oct 11 08:16:12 2023 +0200 for Owner diff --git a/main.yml b/main.yml new file mode 100644 index 0000000..de4a499 --- /dev/null +++ b/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" \ No newline at end of file