Which Ansible ad-hoc flag is analogous to the become directive?
Consider the following playbook:# playbook name: /home/ansible/web.yml---- hosts: webserversbecome: yestasks:- name: edit file 1lineinfile:path: /var/www/content.hml line: "{{ text }}" tags:- content- name: edit file 2lineinfile: path: /var/www/index.hmlline: "{{ text }}"tags:- web- name: edit file 3lineinfile:path: /var/www/etc.hmlline: "{{ text }}"tags: - content - miscWhich use of the ansible-playbook command on the provided playbook will result in ONLY editing the file /var/www/index.html?
What keyword sets a change condition for a given task?
Which line instructs ansible to install httpd?
Which keywords are valid? (Choose all that apply.)
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.)