“Ansible Playbook, aby ustawić bez hasła sudo” Kod odpowiedzi

Ansible Playbook, aby ustawić bez hasła sudo


- name: Make sure we have a 'wheel' group
  group:
    name: wheel
    state: present

- name: Allow 'wheel' group to have passwordless sudo
  lineinfile:
    dest: /etc/sudoers
    state: present
    regexp: '^%wheel'
    line: '%wheel ALL=(ALL) NOPASSWD: ALL'
    validate: 'visudo -cf %s'

- name: Add sudoers users to wheel group
  user:
    name=deployer
    groups=wheel
    append=yes
    state=present
    createhome=yes

- name: Set up authorized keys for the deployer user
  authorized_key: user=deployer key="{{item}}"
  with_file:
    - /home/railsdev/.ssh/id_rsa.pub

Mushy Mantis

Ansible Playbook, aby ustawić bez hasła sudo

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

Odpowiedzi podobne do “Ansible Playbook, aby ustawić bez hasła sudo”

Pytania podobne do “Ansible Playbook, aby ustawić bez hasła sudo”

Więcej pokrewnych odpowiedzi na “Ansible Playbook, aby ustawić bez hasła sudo” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu