Hello Ansible Community, 

I have a role for kibana in which I add a dependency to yum role that 
configures yum repos:

*roles/kibana/meta/main.yml:*

---

dependencies:
  - role: "yum"

    yum_dependencies:
      - name: "kibana"
        description: "Kibana-$releasever - $basearch"
        baseurl: "https://mirror.blabla.de/yum/kibana/4.4/centos/";



Then I have another dependency in elasticsearch role:

*roles/elasticsearch/meta/main.yml:*

---

dependencies:
  - role: "jdk"
  - role: "yum"
    yum_dependencies:
      - name: "elasticsearch"
        description: "Elasticsearch-$releasever - $basearch"
        baseurl: "https://mirror.blabla.fr/yum/elasticsearch/2.x/centos/";


What can I do to append the yum repos variables to yum_dependencies list 
instead of overwriting it? Is it possible in this case? 

Thanks in advance for any help and suggestions!

Best regards,
Tomasz Klosinski

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/4e01ad6c-47dd-42f4-8fab-aa986c9c839a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to