Difference between revisions of "Ansible: lineinfile"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 5: Line 5:
 
         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"'
  

Revision as of 04:41, 30 October 2020

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


  - lineinfile:
       path: /etc/default/sysstat
       state: present
       backrefs: yes
       regexp: '^ENABLED="false"'
       line: 'ENABLED="true"'


   - 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: