Difference between revisions of "Configure user to be able to use sudo with no password"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 7: Line 7:
 
   [[gather_facts]]: no
 
   [[gather_facts]]: no
 
   tasks:
 
   tasks:
     - lineinfile:
+
     - [[lineinfile]]:
 
         path: [[/etc/sudoers]]
 
         path: [[/etc/sudoers]]
 
         state: present
 
         state: present

Revision as of 04:28, 16 August 2021

#!/usr/bin/env ansible-playbook --ask-become-pass

- hosts: YOUR_HOSTNAME
  become: yes
  become_method: sudo
  gather_facts: no
  tasks:
    - lineinfile:
        path: /etc/sudoers
        state: present
        line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL'
        validate: 'visudo -cf %s'


Example with lineinfile module andinsertafter

#!/usr/bin/env ansible-playbook --ask-become-pass

- hosts: YOUR_HOSTNAME
  become: yes
  become_method: sudo
  gather_facts: no
  tasks:
    - lineinfile:
        path: /etc/sudoers
        state: present
        insertafter: '^%sudo'
        line: 'YOUR_USERNAME ALL=(ALL) NOPASSWD: ALL'
        validate: 'visudo -cf %s'


#!/usr/bin/env ansible-playbook

- hosts: YOUR_MACHINE
  tasks:
    - lineinfile:
        path: /etc/sudoers
        state: present
        regexp: '^%sudo'
        line: '%sudo ALL=(ALL) NOPASSWD: ALL'
        validate: 'visudo -cf %s'


Related terms

See also

Advertising: