[ansible-project] Re: allow_duplicates: yes doesn't work as expected

2015-07-24 Thread Daniel Wendler
I have opened an Issue https://github.com/ansible/ansible/issues/11707 on github and *jimi-c* explained it logical: Hi @MorphBonehunter https://github.com/MorphBonehunter, the problem is because allow_duplicates needs to be set on the base role, not in each of the intermediate roles. Move it

[ansible-project] Re: allow_duplicates: yes doesn't work as expected

2015-07-22 Thread Daniel Wendler
I extend the example with another pice named tags: $ cat play-test.yml --- - name: dependency test gather_facts: false hosts: localhost roles: - { role: feature1, tags: feature1 } - { role: feature2, tags: feature2 } This gives me another strage behavior if you look at the

[ansible-project] allow_duplicates: yes doesn't work as expected

2015-07-22 Thread Daniel Wendler
Hello @all today i took another try on the role dependency feature and realize that this doesn't work as i expect this. First at all: ansible --version ansible 1.9.2 configured module search path = /usr/share/ansible I try to explain what i mean with an sample playbook/roles: $ cat

[ansible-project] allow_duplicates: yes doesn't work as expected

2015-07-22 Thread Daniel Wendler
Hello @all today i took another try on the role dependency feature and realize that this doesn't work as i expect this. First at all: ansible --version ansible 1.9.2 configured module search path = /usr/share/ansible I try to explain what i mean with an sample playbook/roles: $ cat

[ansible-project] duplicate role execution with role denpendencies

2014-11-18 Thread Daniel Wendler
Hello, today i try to split our grown ansible roles in more simple roles. After do some work i realize that after rewrite and set some dependencies in our roles, some roles got executed multiple times. So i google a bit and found an bug report ( https://github.com/ansible/ansible/issues/5971)

[ansible-project] tags and role dependencies

2014-10-24 Thread Daniel Wendler
Hello @all, i have an strage behavior with role dependencies and tags. I have an playbook like this: --- - name: install and configure a basic set of tools gather_facts: true hosts: - is roles: - { role: monitoring, tags: monitoring } - { role: other, tags: other } In the

Re: [ansible-project] tags and role dependencies

2014-10-24 Thread Daniel Wendler
...@ansible.com javascript: wrote: For starters, ansible --version output? On Fri, Oct 24, 2014 at 5:29 AM, Daniel Wendler daniel.we...@gmail.com javascript: wrote: Hello @all, i have an strage behavior with role dependencies and tags. I have an playbook like this: --- - name: install