Minor fixes

This commit is contained in:
Tunui Franken 2025-03-23 19:18:33 +01:00
parent 9d9fef0aa7
commit 4ae0ea6886
2 changed files with 13 additions and 0 deletions

View file

@ -55,6 +55,9 @@
mode: 0640 mode: 0640
notify: Reload nftables service notify: Reload nftables service
- name: Make sure nftables is reloaded
ansible.builtin.meta: flush_handlers
- name: Set letsencrypt http-01 challenge argv - name: Set letsencrypt http-01 challenge argv
ansible.builtin.set_fact: ansible.builtin.set_fact:
letsencrypt_http_01_challenge_argv: letsencrypt_http_01_challenge_argv:

View file

@ -50,3 +50,13 @@
owner: root owner: root
group: root group: root
notify: Restart sshd service notify: Restart sshd service
- name: Copy sudoers file for root without password
become: true
ansible.builtin.copy:
content: "{{ ansible_user_id }} ALL=(ALL) NOPASSWD: ALL"
dest: "/etc/sudoers.d/{{ ansible_user_id }}"
owner: root
group: root
mode: 0440
validate: 'visudo -cf %s'