- Which command line can be passed down as a parameter to a module?
A) ansible dbservers -m command "/bin/echo 'hello modules'"
B) ansible dbservers -m command -d "/bin/echo 'hello modules'"
C) ansible dbservers -z command -a "/bin/echo 'hello modules'"
D) ansible dbservers -m command -a "/bin/echo 'hello modules'"
E) ansible dbservers -a "/bin/echo 'hello modules'"
- Which of the following practices is not recommended when you create a custom module and address exceptions?
A) Design a custom module simply and never provide a traceback to the user, if you can avoid it.
B) Fail your module code quickly, and verify that you are providing helpful and understandable exception messages.
C) Only display error messages for the most relevant exceptions, rather than all possible...