test again, this should just make the 2nd definition overwrite the
first, you can do this with include_vars: "{{ansible_os_family}}.yml"
and have the definition of each in a file or you can do this:
vars:
- packages:
Debian:
- dash
- bash
- ksh
- tcsh
- gawk
- perl
- python
- php-cli
- ruby
- tcl
Redhat:
- dash
- bash
- ksh
- tcsh
- gawk
- perl
- python
- php5-cli
- ruby
- tcl8.5
and access it via packages[ansible_os_family]
--
Brian Coca