made note about cwd not working for hostlist anymore (#31258)
* made note about cwd not working for hostlist anymore fixes #31041 * Edits
This commit is contained in:
parent
3717ff64cf
commit
5085c3b859
1 changed files with 4 additions and 3 deletions
|
@ -18,7 +18,7 @@ This document is part of a collection on porting. The complete list of porting g
|
|||
Python version
|
||||
==============
|
||||
|
||||
Ansible will not support Python 2.4 nor 2.5 on the target hosts anymore. Going forward, Python 2.6+ will be required on targets, as already is the case on the controller.
|
||||
Ansible will not support Python 2.4 or 2.5 on the target hosts anymore. Going forward, Python 2.6+ will be required on targets, as already is the case on the controller.
|
||||
|
||||
|
||||
Inventory
|
||||
|
@ -28,8 +28,9 @@ Inventory has been refactored to be implemented via plugins and now allows for m
|
|||
|
||||
One exception is the ``inventory_dir``, which is now a host variable; previously it could only have one value so it was set globally. This means you cannot use it early in plays anymore to determine ``hosts:`` or similar keywords.
|
||||
|
||||
The ``inventory_file`` remains unchaged, as it was always host specific.
|
||||
The ``inventory_file`` remains unchanged, as it was always host specific.
|
||||
|
||||
A bug was fixed with the inventory path/directory, which was defaulting to the current working directory. This caused ``group_vars`` and ``host_vars`` to be picked up from the current working directory instead of just adjacent to the playbook or inventory directory when a host list (comma separated host names) was provided as inventory.
|
||||
|
||||
Deprecated
|
||||
==========
|
||||
|
|
Loading…
Reference in a new issue