Class: Ansible::Ruby::Modules::Lineinfile
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Lineinfile
- Defined in:
- lib/ansible/ruby/modules/generated/core/files/lineinfile.rb
Overview
This module will search a file for a line, and ensure that it is present or absent. This is primarily useful when you want to change a single line in a file only. See the M(replace) module if you want to change multiple, similar lines; for other cases, see the M(copy) or M(template) modules.
Instance Method Summary collapse
-
#backrefs ⇒ :yes, ...
Used with C(state=present).
-
#backup ⇒ :yes, ...
Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
-
#create ⇒ :yes, ...
Used with C(state=present).
-
#dest ⇒ String
The file to modify.
-
#insertafter ⇒ :EOF, ...
Used with C(state=present).
-
#insertbefore ⇒ :BOF, ...
Used with C(state=present).
-
#line ⇒ String?
Required for C(state=present).
-
#others ⇒ Object?
All arguments accepted by the M(file) module also work here.
-
#regexp ⇒ String?
The regular expression to look for in every line of the file.
-
#state ⇒ :present, ...
Whether the line should be there or not.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#backrefs ⇒ :yes, ...
Returns Used with C(state=present). If set, line can contain backreferences (both positional and named) that will get populated if the C(regexp) matches. This flag changes the operation of the module slightly; C(insertbefore) and C(insertafter) will be ignored, and if the C(regexp) doesn’t match anywhere in the file, the file will be left unchanged. If the C(regexp) does match, the last matching line will be replaced by the expanded line parameter.
28 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 28 attribute :backrefs |
#backup ⇒ :yes, ...
Returns Create a backup file including the timestamp information so you can get the original file back if you somehow clobbered it incorrectly.
44 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 44 attribute :backup |
#create ⇒ :yes, ...
Returns Used with C(state=present). If specified, the file will be created if it does not already exist. By default it will fail if the file is missing.
40 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 40 attribute :create |
#dest ⇒ String
Returns The file to modify.
12 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 12 attribute :dest |
#insertafter ⇒ :EOF, ...
Returns Used with C(state=present). If specified, the line will be inserted after the last match of specified regular expression. A special value is available; C(EOF) for inserting the line at the end of the file. If specified regular expression has no matches, EOF will be used instead. May not be used with C(backrefs).
32 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 32 attribute :insertafter |
#insertbefore ⇒ :BOF, ...
Returns Used with C(state=present). If specified, the line will be inserted before the last match of specified regular expression. A value is available; C(BOF) for inserting the line at the beginning of the file. If specified regular expression has no matches, the line will be inserted at the end of the file. May not be used with C(backrefs).
36 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 36 attribute :insertbefore |
#line ⇒ String?
Returns Required for C(state=present). The line to insert/replace into the file. If C(backrefs) is set, may contain backreferences that will get expanded with the C(regexp) capture groups if the regexp matches.
24 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 24 attribute :line |
#others ⇒ Object?
Returns All arguments accepted by the M(file) module also work here.
48 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 48 attribute :others |
#regexp ⇒ String?
Returns The regular expression to look for in every line of the file. For C(state=present), the pattern to replace if found; only the last line found will be replaced. For C(state=absent), the pattern of the line to remove. Uses Python regular expressions; see U(docs.python.org/2/library/re.html).
16 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 16 attribute :regexp |
#state ⇒ :present, ...
Returns Whether the line should be there or not.
20 |
# File 'lib/ansible/ruby/modules/generated/core/files/lineinfile.rb', line 20 attribute :state |