add option to remove whole repo files
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
1a5fc58ce3
commit
15c2048d48
@ -28,6 +28,8 @@ yum_repositories: []
|
||||
# enabled: True
|
||||
# @end
|
||||
|
||||
yum_repofiles_remove: []
|
||||
|
||||
# @var yum_deltarpm_value:description: >
|
||||
# Configure deltarmp. To get it working you have to install `deltarpm` package first!
|
||||
# Value set to `0` means disabled. A positive value defines the number
|
||||
|
@ -1,4 +1,5 @@
|
||||
---
|
||||
- block:
|
||||
- name: Add common yum repositories
|
||||
yum_repository:
|
||||
name: "{{ item.name }}"
|
||||
@ -14,5 +15,13 @@
|
||||
loop_control:
|
||||
label: "{{ item.name }}"
|
||||
notify: __yum_upgrade
|
||||
|
||||
- name: Remove repo files
|
||||
file:
|
||||
name: "/etc/yum.repos.d/{{ item }}"
|
||||
state: absent
|
||||
loop: "{{ yum_repofiles_remove }}"
|
||||
loop_control:
|
||||
label: "/etc/yum.repos.d{{ item }}"
|
||||
become: True
|
||||
become_user: root
|
||||
|
Loading…
Reference in New Issue
Block a user