- Which Ansible module would you use to download and unarchive a zip file?
The module is called unarchive
- True or false: The variables found in the roles/rolename/default/ folder override all other references of the same variable.
False
- Explain how you would add a second user to our playbook?
By adding a second line to the users variable, for example: { name: "user2", group: "lamp", state: "present", key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}" }
- True or false: You can only call a single handler from a task.
False