You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/lib/ansible
Petros Moisiadis c717934b7e Improved 'vars_prompt' syntax to support prompt text and (non-)private input
An example of the new syntax:

vars_prompt:
 - name: 'secret_variable_name"
   prompt: "Enter secret value: "
   private: "yes"
 - name: "nonsecret_variable_name"
   prompt: "Enter non-secret value: "
   private: "no"
14 years ago
..
inventory use AnsibleError so that if there is an error it does not print a traceback 14 years ago
playbook Improved 'vars_prompt' syntax to support prompt text and (non-)private input 14 years ago
runner Fix up chain invocations of template 14 years ago
__init__.py Release bump to start development on 0.6 14 years ago
callbacks.py Improved 'vars_prompt' syntax to support prompt text and (non-)private input 14 years ago
color.py rm stray comment 14 years ago
constants.py Misc code cleanup, mostly whitespace preferences, removing unused imports, plus a few fixes here and there. 14 years ago
errors.py Misc code cleanup, mostly whitespace preferences, removing unused imports, plus a few fixes here and there. 14 years ago
module_common.py Save the transfer of the module file for new style modules, because we can inject the arguments into the modules. 14 years ago
utils.py Move color coding bits to module, use over rest of playbook 14 years ago