What does the -f flag in the ansible command allow you to specify?
What switch needs to be added to prevent the following command from failing: ansible all -m user -a "name=jsmith state=present"
What is wrong with the following command:ansible all -a "mkdir/tmp/testfile"
What character is used to denote use of a jinja filter on an Ansible variable?
Is there a syntax error in the following excerpt? If so, what is it? vars: package: httpd tasks:- name: Deploy {{ package }}yum:name:{{ package }}state: present
Examine the following inventory excerpt file named /home/user/ansible/inventory. [dbservers] db1.example.comWhich of the following files does Ansible check for variables related to that inventory? (Choose all that apply.)