--
You received this message because you are subscribed to the Google Groups "Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-deve...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Not really interested in changing behavior too much just for your development use case when it's just as easy to turn checking off.
In interest in my reading comprehension of the above novel, can you give me a two sentence summary?
BTW, all that you post above is settable in ansible.cfg, the environment variables are just there for legacy reasons.
[defaults]
host_key_checking = False
[paramiko_connection]
record_host_keys = False
[ssh_connection]
ssh_args = -o UserKnownHostsFile=/dev/null
[defaults]
host_key_checking = False
--
The environment variable options will not go away (ever).
What you are proposing is to drastically change the meaning of the host_key_checking option, which we do not want to do.
At the very least, we would have to create a second option (ie. save_host_keys = False) to implement the behavior you want,
but since (as you've illustrated above) you can already accomplish the same thing with only 2 other lines of configuration we do not feel that this is necessary.
At best, this warrants a minor tweak to the Vagrant guide (http://docs.ansible.com/guide_vagrant.html), to specifically mention setting these options would be recommended. We'd be glad to take a documentation pull request along those lines.