add role tag to msmtp role
Some checks failed
/ Ansible Lint (push) Failing after 2m30s
/ Ansible Lint (pull_request) Failing after 2m32s

This commit is contained in:
lilly 2026-04-30 23:06:19 +02:00
commit 5787a9d792
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g

View file

@ -1,10 +1,13 @@
- name: ensure msmtp is installed ---
- tags: ["msmtp"]
name: ensure msmtp is installed
ansible.builtin.apt: ansible.builtin.apt:
name: msmtp name: msmtp
state: present state: present
become: true become: true
- name: ensure msmtp config for root user - tags: ["msmtp"]
name: ensure msmtp config for root user
ansible.builtin.template: ansible.builtin.template:
src: msmtprc.j2 src: msmtprc.j2
dest: /root/.msmtprc dest: /root/.msmtprc