Exercise: Reading a File with Ansible
Implement the playbook to read the remote cpuinfo file using Ansible.
We'll cover the following...
Task
The cpuinfo
file displays the processor information on the target system. It is stored under the /proc/cpuinfo
text file. We want to access the file and display the content on the screen.
Explanation
In this ...