Hi,
can humbly ask someone to provide me some example how to filter list of servers with facts ? I probably miss something in documentation, I need something like this:
ansible -i /usr/local/src/ansible/plugins/inventory/vmware.py ‘~web.*’ -m shell -a ‘filter=facter_operatingsystem_CentOS’ -a “some fancy command”
and in playbook this:
- name: Test
script: ./script.sh
register: command_result
failed_when: “‘FAILED’ in command_result.stdout”
when: facter_operatingsystem|CentOS
Thanks a lot
Vasek