1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

lokole - create /lokole/state

This commit is contained in:
Jerry Vonau 2021-05-17 08:42:09 -05:00
parent be46a22ad1
commit 719c88a930

View file

@ -77,6 +77,19 @@
path: "{{ lokole_run_directory }}"
#mode: a+x # Not nec, given above 'state: directory'
# lets try to catch settings.env creation at registration time
# can't tell if the routine doesn't like settings.env being missing
- name: mkdir /lokole
file:
state: directory
path: /lokole
- name: Link {{ lokole_run_directory }} to /lokole/state
file:
state: link
path: /lokole/state
src: "{{ lokole_run_directory }}"
- name: Install {{ lokole_run_directory }}/webapp_secrets.sh from template, to configure Lokole
template:
src: webapp_secrets.sh.j2