There are multiple ways in which you can replace a particular word, a line, all the words matching a specific pattern etc. in Ansible. Depending on the situation we can use the Ansible ‘replace’ module or ‘lineinfile’ module. In this post, we will see some examples of how to use these modules to get the desired […]
replace
How to add lines to a file in Ansible
Depending on your requirements, you might need to add a line to a file in different positions. Start of the file. End of the file. After a line/pattern. Before a line/pattern. Append a string to a line (before/after). Also, there might be other conditions you need to satisfy like, Add multiple lines. Add command line […]