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

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