Difference between revisions of "Enable passwordless sudo for a specific user"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
(23 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  
 +
* <code>[[visudo]]</code>
 +
* <code>[[/etc/sudoers]]</code>
 +
* <code>[[/etc/sudoers.d/]]</code>
  
 
+
* Ansible: [[Configure user to be able to use sudo with no password]] using <code>[[lineinfile]]</code> module
 
 
== Passwordless sudo using [[DevOps/Ansible|Ansible]] ==
 
<pre>
 
#!/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'
 
</pre>
 
 
 
  
 
== Activities ==
 
== Activities ==
 
* Understand order rules are applied and impact: https://vim.fandom.com/wiki/Set_Vim_as_your_default_editor_for_Unix
 
* Understand order rules are applied and impact: https://vim.fandom.com/wiki/Set_Vim_as_your_default_editor_for_Unix
* <code>sudo update-alternatives --config editor</code>
+
* <code>[[usermod -aG sudo]] USERNAME</code>
* <code>[[usermod]] -aG sudo</code>
+
 
 +
== Related ==
 +
* [[NOPASSWD]]
 +
* %sudo ALL=(ALL) NOPASSWD: ALL
 +
* [[Passkey]]
  
 
== See also ==
 
== See also ==
 
* {{sudo}}
 
* {{sudo}}
* {{Linux Commands privileges}}
 
* {{Ansible}}
 
* {{vim}}
 
* {{OpenSSH}}
 
  
 
[[Category:Linux]]
 
[[Category:Linux]]
 +
[[Category:sudo]]

Revision as of 10:42, 21 December 2023

Advertising: