How to uncomment or enable a setting in a config file in Linux using Ansible?
Ansible is quite a good tool, as it helps to make a lot of changes on a few servers with a minimal effort.
Of course, the challenge is you need to know what you want. And also create an Ansible yaml file that will accomplish the task.
Example YAML file for Ansible below is able to make some changes on the Linux logrotate.conf file.
On Linux logrotate.conf, it has some text like the string below. Note this is just an example and you can tweak it to other settings as desired.
# uncomment
this if you want your log files compressed
#compress
How to remove the comment in order to enable the setting?
Well, if there's only a single server do it the simple way. Login to the server and edit the file using vim or nano or other text editor.
However, if there are quite a few servers. Ansible is a better solution to do this task.
Here's the YAML Ansible code snippet that will uncomment or enable the settings for logrotate.conf file.
---
hosts:
server.007.locals:server008.locals:server009.locals:server010.locals
tasks:
- lineinfile:
path: /etc/logrotate.conf
regexp: '^#\s*compress.*$'
line: 'compress'
backrefs: yes
The code above is inspired from this StackOverflow post: Replace a line in a config file with ansible - Stack Overflow
Cheers! Take care. Till next Time.
Stay safe! and Keep things up!
Do ASAP, Always Say A Prayer...
Practice O.T.G. = Obedience To God
Make time for Prayer and Meditation.
================================
Free Android Apps:
Click links below to find out more:
Free Android Apps:
Click links below to find out more:
Excel Keyboard guide:
https://play.google.com/store/apps/details?id=chrisjoms.myexcelapplicationguide
Heaven's Dew Fall Prayer app for Android :
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
Divine Mercy Chaplet Guide (A Powerful prayer) BFF = Be Filled Faith:
Comments
Post a Comment