Merge pull request 'dashboard_dir' (#4) from dashboard_dir into main

Reviewed-on: #4
This commit is contained in:
meaz 2021-07-16 08:40:37 +00:00
commit 235f561275
2 changed files with 10 additions and 1 deletions

View File

@ -6,7 +6,7 @@ You can deploy test instance using `Vagrantfile` attached to the role.
`vagrant up`
`ansible-playbook -b Playbooks/cryptpad.yml`
`ansible-playbook -b Playbooks/dashboard.yml`
Then you can access dashboard from your computer on http://192.168.33.49

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'