lineinfile \- Ensure a particular line is in a file
@ -8,35 +8,27 @@ lineinfile \- Ensure a particular line is in a file
This module will search a file for a line, and ensure that it is present or absent.
.PP
This is primarily useful when you want to change a single line in a file only. For other cases, see the \fIcopy\fR or \fItemplate\fR modules.
."------OPTIONS
."
."
.SHOPTIONS
.IPname
The file to modify
(required)
.IPregexp
The regular expression to look for in the file. For \fIstate=present\fR, the pattern to replace. For \fIstate=absent\fR, the pattern of the line to remove.
(required)
.IPstate
Whether the line should be there or not.
.".SSChoices
Whether the line should be there or not.
.IRChoices:
present,absent.
.IPline
Required for \fIstate=present\fR. The line to insert/replace into the file. Must match the value given to \fCregexp\fR.
present,absent. (default: present)
.IPname
The file to modify(required)
.IPinsertafter
Used with \fIstate=present\fR. If specified, the line will be inserted after the specified regular expression. Two special values are available; \fCBOF\fR for inserting the line at the beginning of the file, and \fCEOF\fR for inserting the line at the end of the file.
.".SSChoices
Used with \fIstate=present\fR. If specified, the line will be inserted after the specified regular expression. Two special values are available; \fCBOF\fR for inserting the line at the beginning of the file, and \fCEOF\fR for inserting the line at the end of the file.
.IRChoices:
BOF,EOF.
BOF,EOF. (default: EOF)
.IPregexp
The regular expression to look for in the file. For \fIstate=present\fR, the pattern to replace. For \fIstate=absent\fR, the pattern of the line to remove.(required)
.IPline
Required for \fIstate=present\fR. The line to insert/replace into the file. Must match the value given to \fCregexp\fR.
.IPbackup
Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
."
Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.."