summaryrefslogtreecommitdiffstats
path: root/roles/devel/tasks/main.yml
blob: d42dd31c3f84b3ae66c2728ca08fbbef3559d02b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- name: "Gather OS specific variables"
  include_vars: "{{ item }}"
  with_first_found:
    - skip: true
      files:
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_version }}.yml"
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version }}.yml"
        - "{{ ansible_distribution|lower }}.yml"
        - "{{ ansible_os_family|lower }}.yml"

- include_tasks: dnf.yml
  when:  ansible_distribution | lower == 'fedora'

- include_tasks: yum.yml
  when: (ansible_os_family | lower == 'redhat') and (ansible_distribution | lower != 'fedora')

- name: Install various development packages
  package: name={{item}} state=present
  with_items: "{{ common_packages | union(packages | default([])) }}"