Ansible Module lineinfile: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
* [[Ansible_Concepts#lineinfile|Ansible Concepts]] | * [[Ansible_Concepts#lineinfile|Ansible Concepts]] | ||
=Overview= | |||
The module can be used to read and write lines from text files. | |||
=Example= | =Example= |
Revision as of 04:20, 5 July 2021
External
Internal
Overview
The module can be used to read and write lines from text files.
Example
- name: "Adjust Java version to {{ jdk.version }}"
lineinfile:
path: "{{ settings_path }}/settings.conf"
regexp: '^JAVA_VERSION='
line: "JAVA_VERSION={{ jdk.version }}"