Ansible: lineinfile

From wikieduonline
Revision as of 12:40, 21 October 2021 by Welcome (talk | contribs)
Jump to navigation Jump to search

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: