summaryrefslogtreecommitdiffstats
path: root/installer/roles/local_docker/tasks/main.yml
blob: aab1260a36e9a3e5e03f782b3102622abf52c12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Generate broadcast websocket secret
  set_fact:
    broadcast_websocket_secret: "{{ lookup('password', '/dev/null', length=128) }}"
  run_once: true
  no_log: true
  when: broadcast_websocket_secret is not defined

- import_tasks: upgrade_postgres.yml
  when:
    - postgres_data_dir is defined
    - pg_hostname is not defined

- import_tasks: set_image.yml
- import_tasks: compose.yml