blob: 286a02767d0c958fe7924748b6be7982ec3af0af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
- 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'
- name: Add our repository with updates and overrides
yum_repository: name="{{ item.name }}" description= "{{ item.description | default('Ands repository') }}" baseurl="{{ item.url }}" enabled="yes" gpgcheck="no" cost="{{ item.cost | default(1) }}"
with_items: "{{ ands_repositories | default([]) }}"
# We always update on first install and if requested
- name: Update CentOS
yum: name=* state=latest update_cache=yes
when: (result | changed) or (os_update | default(false))
- name: Install additional software
include_tasks: software.yml
- 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
|