Browse Source

Merge pull request #5279 from kwoodson/repos_accept_name_or_id

Adding another default to protect against missing name/desc
Kenny Woodson 7 years ago
parent
commit
91a2cac8f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_repos/tasks/main.yaml

+ 1 - 1
roles/openshift_repos/tasks/main.yaml

@@ -12,7 +12,7 @@
 
   - name: Create any additional repos that are defined
     yum_repository:
-      description: "{{ item.description | default(item.name) }}"
+      description: "{{ item.description | default(item.name | default(item.id)) }}"
       name: "{{ item.name | default(item.id) }}"
       baseurl: "{{ item.baseurl }}"
       gpgkey: "{{ item.gpgkey | default(omit)}}"