From 7076298dc1eb03fbf6bea1fe5f58fcdc2a6b54e0 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Mon, 6 Apr 2015 22:27:14 -0500 Subject: [PATCH] Adding FIXME note to playbook executor code regarding password params --- v2/ansible/executor/playbook_executor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/v2/ansible/executor/playbook_executor.py b/v2/ansible/executor/playbook_executor.py index 40c0798b00..20aad36476 100644 --- a/v2/ansible/executor/playbook_executor.py +++ b/v2/ansible/executor/playbook_executor.py @@ -36,6 +36,8 @@ class PlaybookExecutor: basis for bin/ansible-playbook operation. ''' + # FIXME: passwords should not be passed in piecemeal like this, + # if they're just going to be stuck in a dict later. def __init__(self, playbooks, inventory, variable_manager, loader, display, options, conn_pass, become_pass): self._playbooks = playbooks self._inventory = inventory