Template:Ask-become-pass

From wikieduonline
Revision as of 18:41, 16 January 2023 by Ant (talk | contribs) (Created page with " #!/usr/bin/env ansible-playbook --ask-become-pass - hosts: YOUR_HOSTNAME become: yes become_method: sudo gather_facts: no tasks: -...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
#!/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'

Advertising: