fix linter

This commit is contained in:
nd 2021-07-17 00:37:07 +02:00
parent 8f17a34bd2
commit 8f55dfe26d
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9

View file

@ -1,8 +1,9 @@
- set_fact: - name: store mount object
set_fact:
mount: "{{ {}|combine(item.value, { 'mountpoint': item.key }, recursive=True) }}" mount: "{{ {}|combine(item.value, { 'mountpoint': item.key }, recursive=True) }}"
- name: "create mount point {{ mount.mountpoint }}" - name: "create mount point {{ mount.mountpoint }}"
file: file: # noqa risky-file-permissions
path: "{{ mount.mountpoint }}" path: "{{ mount.mountpoint }}"
state: directory state: directory