summaryrefslogtreecommitdiff
path: root/lib/ansible/inventory
diff options
context:
space:
mode:
authorAbhijit Menon-Sen <abhijit@menon-sen.com>2018-06-06 09:28:58 +0530
committerGitHub <noreply@github.com>2018-06-06 09:28:58 +0530
commit276358c8850a19ba5d22108aba5fc7a898116d05 (patch)
treec3a0d87548510bdc7849dde0d380346047febe3e /lib/ansible/inventory
parente8227e83955f2620a1497888522027cb90933fd2 (diff)
downloadansible-276358c8850a19ba5d22108aba5fc7a898116d05.tar.gz
Introduce inventory.any_unparsed_is_failed configuration setting (#41171)
In the process of building up the inventory by parsing each inventory source with each available inventory plugin, there are three kinds of possible errors (listed in order from earliest to latest): 1. One source could not be parsed by a particular plugin. 2. One source could not be parsed by any available plugin. 3. ALL sources could not be parsed by any available plugin. The errors in (1) are a part of normal operation, e.g., the script plugin is expected to fail to parse an ini-format source, and we will ignore that error and try the next plugin. There is currently no way to control this, and no known compelling use-case for a setting to control it. This commit does not make any changes here. We implement "any_unparsed_is_failed" to handle (2) above. If enabled, this requires that every available source be parsed validly by at least one plugin. In an inventory comprising a static hosts file and ec2.py, this setting will cause a fatal error if ec2.py fails (a situation that attracted only a warning earlier). We clarify that the existing "unparsed_is_failed=true" setting causes a fatal error only in (3) above, i.e., if NO inventory source could be parsed. In other words, if there is ANY valid source in the inventory (e.g., an ini-format static file), no combination of errors and the setting will cause a fatal error. If you want to execute your playbooks when your inventory is… (a) complete, use "any_unparsed_is_failed=true". (b) not empty, use "unparsed_is_failed=true". The "unparsed_is_failed" setting should be renamed to "all_unparsed_is_failed", but this commit does not do so. Fixes #40512 Fixes #40996
Diffstat (limited to 'lib/ansible/inventory')
-rw-r--r--lib/ansible/inventory/manager.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ansible/inventory/manager.py b/lib/ansible/inventory/manager.py
index 0772cff636..29f95de626 100644
--- a/lib/ansible/inventory/manager.py
+++ b/lib/ansible/inventory/manager.py
@@ -285,6 +285,8 @@ class InventoryManager(object):
display.warning(u'\n* Failed to parse %s with %s plugin: %s' % (to_text(fail['src']), fail['plugin'], to_text(fail['exc'])))
if hasattr(fail['exc'], 'tb'):
display.vvv(to_text(fail['exc'].tb))
+ if C.INVENTORY_ANY_UNPARSED_IS_FAILED:
+ raise AnsibleError(u'Completely failed to parse inventory source %s' % (to_text(source)))
if not parsed:
display.warning("Unable to parse %s as an inventory source" % to_text(source))