🚨 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:
parent
8b2ab7753d
commit
e3d2e8a31b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue