diff options
Diffstat (limited to 'installer/roles/local_docker/tasks')
-rw-r--r-- | installer/roles/local_docker/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/installer/roles/local_docker/tasks/main.yml b/installer/roles/local_docker/tasks/main.yml index 446f110f83..53dca32331 100644 --- a/installer/roles/local_docker/tasks/main.yml +++ b/installer/roles/local_docker/tasks/main.yml @@ -1,4 +1,10 @@ --- +- name: Generate broadcast websocket secret + set_fact: + broadcast_websocket_secret: "{{ lookup('password', '/dev/null', length=128) }}" + run_once: true + no_log: true + - name: Check for existing Postgres data stat: path: "{{ postgres_data_dir }}/pgdata/PG_VERSION" |