- name: Ensure all required repositories are configured
  package: name={{item}} state=present
  register: result
  with_items:
    - epel-release
  when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'

- include_tasks: main_yum.yml
  when: ansible_pkg_mgr == 'yum' 
  
- include_tasks: main_dnf.yml
  when: ansible_pkg_mgr == 'dnf'

- name: Install additional software
  include_tasks: software.yml

- name: Ensure csa user can login using public key auth
  file: path="/home/csa/.ssh" owner="csa" group="csa" recurse=true

- name: Configure git
  shell: |
    git config --global http.sslVerify false
    git config --global user.name "Suren A. Chilingaryan"
    git config --global user.email csa@suren.me
    exit 0
  args:
    executable: /bin/bash