Valid 701-100 Dumps shared by ExamDiscuss.com for Helping Passing 701-100 Exam! ExamDiscuss.com now offer the newest 701-100 exam dumps, the ExamDiscuss.com 701-100 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 701-100 dumps with Test Engine here:
Which of the following Ansible tasks copies the file example.txt to a manage system?
Correct Answer: B
In Ansible, the copy module is used to copy files from the local system to a remote system. The correct syntax to copy example.txt to /tmp/example.txt on the managed system is: src: example.txt dest: /tmp/example.txt Explanation of the other options: * rsync: Ansible does not have an rsync module with the syntax provided. * retrieve: This is not a valid Ansible module. * cp: This is not a valid Ansible module. * transfer: This is not a valid Ansible module. References: * Ansible Documentation - copy module