Which command is the correct way to run the playbook /home/ansible/Buildwww.yml using the inventory file /home/ansible/inventory, assuming your present working directory is /home/ansible?
A. ansible -i inventory Build.yml
B. ansible -i inventory -p Buildwww.yml
C. ansible-playbook -i inventory -p Buildwww.yml
D. ansible-playbook -i inventory Buildwww.yml
Which of the following are valid flags for the ansible-playbook command? (Choose all that apply.)
A. --include-tags
B. --tags
C. --skip-tags
D. --tag
Consider the following file. authors:
-joe
-john
editors:
-frank
managers:
editing: josh
authoring: sam
How many lists are defined in the provided file?
A. 3
B. 0
C. 2
D. 1
Where does ansible-galaxy install place roles by default?
A. $PWD/roles
B. /etc/ansible/roles
C. /etc/roles
D. /usr/share/ansible/roles
What attribute allows you to cause a play to stop based on a certain failure threshold?
A. failure_threshold
B. serial
C. acceptable_failure_percentage
D. max_fail_percentage
What are the minimum configurations that must be made to install Ansible Tower?
A. You must provide a target host and set some key user passwords.
B. You must generate an SSL certificate for the Ansible Tower web frontend.
C. You must specify a few key user passwords.
D. PROJECTS_ROOT must be configured.
Which of the following is a configuration file for Ansible Tower?
A. /etc/ansible/tower.py
B. /etc//tower/settings.ini
C. /etc/ansible/tower.ini
D. /etc//tower/settings.py
How is information on a given module displayed using the command ansible-doc andlt;moduleandgt;?
A. The information is simply printed to STDOUT.
B. The information is displayed in vim.
C. The information is displayed in the ansible-doc tui.
D. The information is displayed in a less-like program.
State whether the following statement is true or false. A template has a maximum of 10 variables.
A. True
B. False