add tasks

This commit is contained in:
Andreas Zweili 2021-10-25 21:46:19 +02:00
parent f5f23765f9
commit 4a79e815a3
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,9 @@
- name: "Add Ansible repository"
apt_repository:
repo: "ppa:ansible/ansible"
state: present
- name: "Install Packages"
apt:
state: present
name: "{{ ansible_packages }}"

View File

@ -0,0 +1,4 @@
ansible_packages:
- ansible
- ansible-lint
- sshpass