mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
don't link for diagnostics
This commit is contained in:
parent
a85418df12
commit
38c6ce9d70
1 changed files with 11 additions and 7 deletions
|
@ -87,16 +87,20 @@
|
||||||
|
|
||||||
# lets try to catch settings.env creation at registration time
|
# lets try to catch settings.env creation at registration time
|
||||||
# can't tell if the routine doesn't like settings.env being missing
|
# can't tell if the routine doesn't like settings.env being missing
|
||||||
- name: mkdir /{{ lokole_user }}
|
- name: mkdir /{{ lokole_user }}/state for registration testing
|
||||||
file:
|
file:
|
||||||
state: directory
|
state: directory
|
||||||
path: /{{ lokole_user }}
|
path: /{{ lokole_user }}/state
|
||||||
|
|
||||||
- name: Link {{ lokole_run_directory }} to /lokole/state
|
- name: Install dummy target for registration testing fake
|
||||||
file:
|
template:
|
||||||
state: link
|
src: settings.env.j2
|
||||||
path: "{{ lokole_user }}/state"
|
dest: "/{{ lokole_user }}/state/settings.env"
|
||||||
src: "{{ lokole_run_directory }}"
|
|
||||||
|
- name: Install dummy target for registration testing run
|
||||||
|
template:
|
||||||
|
src: settings.env.j2
|
||||||
|
dest: "{{ lokole_run_directory }}/settings.env"
|
||||||
|
|
||||||
- name: Install {{ lokole_run_directory }}/webapp_secrets.sh from template, to configure Lokole
|
- name: Install {{ lokole_run_directory }}/webapp_secrets.sh from template, to configure Lokole
|
||||||
template:
|
template:
|
||||||
|
|
Loading…
Reference in a new issue