🚨 Fix linter warning of type 'name[template]'

This warning:

    name[template]: Jinja templates should only be at the end of 'name'
    setup-ssh.yml:6 Task/Handler: Ensure {{ lookup('env', 'HOME') }}/.ssh/config.d/ dir is present

Reason for that warning is thin.  Using the actual home dir here adds
not much value, so keep it symbolic.

Link: https://ansible.readthedocs.io/projects/lint/rules/name/
This commit is contained in:
Alexander Dahl 2025-03-01 22:09:10 +01:00
parent 8b2ab7753d
commit e3d2e8a31b

View file

@ -3,7 +3,7 @@
hosts: localhost
tasks:
- name: Ensure {{ lookup('env', 'HOME') }}/.ssh/config.d/ dir is present
- name: Ensure $HOME/.ssh/config.d/ dir is present
ansible.builtin.file:
path: "{{ lookup('env', 'HOME') }}/.ssh/config.d/"
state: directory