Difference between revisions of "Ansible: lineinfile"

From wikieduonline
Jump to navigation Jump to search
Line 21: Line 21:
  
 
== Examples ==
 
== Examples ==
* [[Configure user to be able to use sudo with no password]] <code>[[lineinfile]]</code>
+
* [[Configure user to be able to use sudo with no password]] (<code>[[lineinfile]]</code>)
 
* [[Install and configure sysstat using Ansible]] (<code>[[package]]</code>, <code>[[lineinfile]]</code>, <code>[[service]]</code>)
 
* [[Install and configure sysstat using Ansible]] (<code>[[package]]</code>, <code>[[lineinfile]]</code>, <code>[[service]]</code>)
  

Revision as of 08:35, 29 April 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: