blob: 2b320d5b6d2b4f635f0d8fc74c2b85afca0c105b (
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
|
- 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 various ansible requirements
package: name={{item}} state=present
with_items:
- yum-plugin-versionlock
- libselinux-python
- libsemanage-python
- yamllint
- pyOpenSSL
- python-passlib
- python2-ruamel-yaml
- python2-jmespath
- python-ipaddress
- iptables-services
- PyYAML
- python-rhsm-certificates
|