summaryrefslogtreecommitdiffstats
path: root/setup-dev-tools/tasks/main.yml
blob: 62a176f078c19019d042b6c289dba15da32bcc0b (plain) (blame)
1
2
3
4
5
6
7
8
---
# Get packages names for the target distro
- include: tasks/distro.yml

# Finally lets install those packages
- name: Install dev tools
  package: name={{ item }} state=installed
  with_items: "{{ pkgnames }}"