homeserver/roles/mgrote_zfs_sanoid/tasks/source.yml
Michael Grote 2b3542dc42
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 3s
ansible-lint / Ansible Lint (pull_request) Failing after 31s
sdfg
2024-10-29 14:45:02 +01:00

20 lines
502 B
YAML

---
#- name: template ssh public key
# become: true
# ansible.posix.authorized_key: # TODO händisch loschen
# user: "{{ sanoid_user }}"
#key: "{{ sanoid_syncoid_ssh_pubkey }}"
# state: absent
# when:
# - sanoid_syncoid_source_host
- name: Ensure user is added to sudoers
become: true
community.general.sudoers:
name: "users-sudo-{{ sanoid_user }}"
state: absent
user: "{{ sanoid_user }}"
commands: ALL
nopassword: true
when:
- sanoid_syncoid_source_host