fix non existing dir when icons chose instead of fontawesome

This commit is contained in:
meaz 2021-07-15 10:29:37 +02:00
parent 396e9d0a74
commit 054fbabc34
Signed by: meaz
GPG Key ID: CD7A47B2F1ED43B4
1 changed files with 9 additions and 0 deletions

View File

@ -17,3 +17,12 @@
become: yes
become_user: "{{ dash_user }}"
when: dash_icons_or_fontawesome == 'fontawesome'
- name: "[GIT] - Create directory folder"
file:
path: "{{ dash_static_rootdir }}/{{ dash_dirname }}"
owner: "{{ dash_user }}"
group: "{{ dash_group }}"
state: directory
recurse: yes
when: dash_icons_or_fontawesome == 'icons'