Hi.
I’ve found that names of NIC aliases returned by setup module has changed in ansible 1.4:
$ ansible --version
ansible 1.3.2
$ ansible foo -m setup | grep snat
“ansible_bond0:snat”: {
“bond0:snat”,
$ ansible --version
ansible 1.4 (release1.4.0 2a58c2bbe3) last updated 2013/11/25 10:56:50 (GMT +200)
$ ansible foo -m setup | grep snat
“ansible_bond0_snat”: {
“bond0_snat”,
Is that desired behavior (and documented anywhere)?
Tomek