diff options
Diffstat (limited to 'roles/common/tasks/main_dnf.yml')
-rw-r--r-- | roles/common/tasks/main_dnf.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/common/tasks/main_dnf.yml b/roles/common/tasks/main_dnf.yml new file mode 100644 index 0000000..0572132 --- /dev/null +++ b/roles/common/tasks/main_dnf.yml @@ -0,0 +1,15 @@ +- 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 + dnf: name=* state=latest + when: (result | changed) or (os_update | default(false)) + +- name: Install various ansible requirements + package: name={{item}} state=present + with_items: + - yum-plugin-versionlock + - python-rhsm-certificates +# - iptables-services |