Difference between revisions of "Ansible: lineinfile"
Jump to navigation
Jump to search
(26 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
https://docs.ansible.com/ansible/latest/collections/ansible/builtin/lineinfile_module.html | https://docs.ansible.com/ansible/latest/collections/ansible/builtin/lineinfile_module.html | ||
- lineinfile: | - lineinfile: | ||
− | path: /etc/default/sysstat | + | [[path:]] [[/etc/default/sysstat]] |
− | state: present | + | [[state:]] [[present]] |
[[backrefs]]: yes | [[backrefs]]: yes | ||
[[regexp]]: '^ENABLED="false"' | [[regexp]]: '^ENABLED="false"' | ||
line: 'ENABLED="true"' | line: 'ENABLED="true"' | ||
+ | [[Configure user to be able to use sudo with no password]]: | ||
+ | |||
+ | - lineinfile: | ||
+ | path: /etc/sudoers | ||
+ | state: present | ||
+ | [[insertafter:]] '^%sudo' | ||
+ | [[line:]] 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL' | ||
+ | validate: '[[visudo -cf]] %s' | ||
+ | |||
+ | - lineinfile: | ||
+ | path: /path/to/your_file | ||
+ | state: present | ||
+ | [[insertafter:]] EOF | ||
+ | [[line:]] 'your text line to add at end of file. For multiple lines use [[blockinfile]]' | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Line 29: | Line 33: | ||
== Related terms == | == Related terms == | ||
* <code>[[sed]]</code> | * <code>[[sed]]</code> | ||
+ | * <code>[[rpl]]</code> | ||
* [[Ansible playbooks examples]] | * [[Ansible playbooks examples]] | ||
* [[Puppet]] | * [[Puppet]] | ||
− | * replace module https://docs.ansible.com/ansible/latest/collections/ansible/builtin/replace_module.html#ansible-collections-ansible-builtin-replace-module | + | * <code>[[replace]]</code> module https://docs.ansible.com/ansible/latest/collections/ansible/builtin/replace_module.html#ansible-collections-ansible-builtin-replace-module |
+ | * [[Template (Ansible)]] | ||
+ | * <code>[[backup:]]</code> | ||
+ | * <code>[[ansible.builtin]]</code>: <code>[[ansible.builtin.file]]</code> | ||
+ | * <code>[[blockinfile:]]</code> | ||
+ | * [[file (Puppet)]] | ||
+ | * [[Add line]]: <code>[[grep -qxF]]</code> | ||
== See also == | == See also == | ||
+ | * {{lineinfile}} | ||
+ | * {{sed}} | ||
+ | * {{line}} | ||
* {{Ansible modules}} | * {{Ansible modules}} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Category:Ansible]] | [[Category:Ansible]] |
Latest revision as of 13:45, 31 January 2024
https://docs.ansible.com/ansible/latest/collections/ansible/builtin/lineinfile_module.html
- lineinfile: path: /etc/default/sysstat state: present backrefs: yes regexp: '^ENABLED="false"' line: 'ENABLED="true"'
Configure user to be able to use sudo with no password:
- lineinfile: path: /etc/sudoers state: present insertafter: '^%sudo' line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL' validate: 'visudo -cf %s'
- lineinfile: path: /path/to/your_file state: present insertafter: EOF line: 'your text line to add at end of file. For multiple lines use blockinfile'
Examples[edit]
- Configure user to be able to use sudo with no password (
lineinfile
) - Install and configure sysstat using Ansible (
package
,lineinfile
,service
)
Related terms[edit]
sed
rpl
- Ansible playbooks examples
- Puppet
replace
module https://docs.ansible.com/ansible/latest/collections/ansible/builtin/replace_module.html#ansible-collections-ansible-builtin-replace-module- Template (Ansible)
backup:
ansible.builtin
:ansible.builtin.file
blockinfile:
- file (Puppet)
- Add line:
grep -qxF
See also[edit]
- Ansible:
lineinfile, blockinfile
sed, gsed
,-n, -i
,Ansible: replace
,append
,Chef: Editing a file
,lineinfile
line
,newline
,characters
,wc, column
, Add line, Concatenate lines, Ansible: lineinfile, rpl, sed -i- Ansible modules:
gather_facts, set_fact
,ansible.builtin.file
,lineinfile
,stat
,group
,mount
,git:
,package:
,command:
,shell:
,raw:
,template:
,register:
,user:
, Ansible playbooks examples,tasks:
,lineinfile, blockinfile:
,shell:
,command:
,raw:
,ansible.builtin.file, service:, aws.ecs_taskdefinition, aws.asg, docker_container, kubernetes.core.k8s
,community.
,include_tasks
Advertising: