Difference between revisions of "Ansible: lineinfile"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 10: Line 10:
 
         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'
  
<pre>
 
  - lineinfile:
 
        path: /etc/sudoers
 
        state: present
 
        insertafter: '^%sudo'
 
        line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL'
 
        validate: 'visudo -cf %s'
 
</pre>
 
  
  

Revision as of 04:25, 16 August 2021

This article is a Draft. Help us to complete it.

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'


Examples


Related terms

See also

Advertising: