mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Raise Exception in virtualbox inventory plugin
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
committed by
Brian Coca
parent
67d6e8177e
commit
37293dec3d
@@ -250,7 +250,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
|
||||
try:
|
||||
p = Popen(cmd, stdout=PIPE)
|
||||
except Exception as e:
|
||||
AnsibleParserError(to_native(e))
|
||||
raise AnsibleParserError(to_native(e))
|
||||
|
||||
source_data = p.stdout.read().splitlines()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user