summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/custom-actions/add-yum-repos.yml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/openstack/custom-actions/add-yum-repos.yml')
-rw-r--r--playbooks/openstack/custom-actions/add-yum-repos.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/playbooks/openstack/custom-actions/add-yum-repos.yml b/playbooks/openstack/custom-actions/add-yum-repos.yml
deleted file mode 100644
index ffebcb642..000000000
--- a/playbooks/openstack/custom-actions/add-yum-repos.yml
+++ /dev/null
@@ -1,12 +0,0 @@
----
-- hosts: cluster_hosts
- vars:
- yum_repos: []
- tasks:
- # enable additional yum repos
- - name: Add repository
- yum_repository:
- name: "{{ item.name }}"
- description: "{{ item.description }}"
- baseurl: "{{ item.baseurl }}"
- with_items: "{{ yum_repos }}"