Difference between revisions of "Ansible: lineinfile"

From wikieduonline
Jump to navigation Jump to search
(7 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
   - 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 13: Line 13:
 
         path: /etc/sudoers
 
         path: /etc/sudoers
 
         state: present
 
         state: present
         insertafter: '^%sudo'
+
         [[insertafter:]] '^%sudo'
         line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL'
+
         [[line:]] 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL'
 
         validate: '[[visudo -cf]] %s'
 
         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 33: Line 39:
 
* <code>[[backup:]]</code>
 
* <code>[[backup:]]</code>
 
* <code>[[ansible.builtin]]</code>: <code>[[ansible.builtin.file]]</code>
 
* <code>[[ansible.builtin]]</code>: <code>[[ansible.builtin.file]]</code>
 +
* <code>[[blockinfile:]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 13:19, 21 October 2021

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


Related terms

See also

Advertising: