A service called testdome_service has a licensing cost based on the number of systems it is installed on. For the purpose of checking if the package is installed or not, your DevOps team lead has shared the following playbook:
---
- hosts: testdome_servers
vars:
package_names:
- testdome_service
tasks:
- name: "Package check"
package:
name: "{{ item }}"
state: present
check_mode: yes
loop: "{{ package_names }}"
register: package_check
- name: "Print"
debug:
msg: "Package is installed"
when: package_check is succeeded
Which answers are correct for the given playbook?
(Select all acceptable answers.)
Tags
AnsibleWould you like to see our other questions?
We have 1000+ premium hand-crafted questions for 160+ job skills and 20+ coding languages. We prefer questions with small samples of actual work over academic problems or brain teasers.
Visit our question libraryPrivate Concierge
Send us an email with an explanation of your testing needs and a list of candidates. We will create an appropriate test, invite your candidates, review their results, and send you a detailed report.
Contact Private ConciergeWould you like to see our tests? The following tests contain Ansible related questions:
On the TestDome Blog
Screening Applicants: The Good, the Bad and the Ugly
Since we’re all biased and we use incorrect proxies, why not just outsource hiring to experts or recruitment agencies? After all, they’ve been screening people for many years, so they must know how to do it right?
Not really. I was surprised to discover that many experts disagree with each other. Everybody praises their pet method and criticizes the others. Many of these methods look legitimate, but are based on...