mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
18 lines
496 B
YAML
18 lines
496 B
YAML
![]() |
- hosts: all
|
||
|
gather_facts: no
|
||
|
strategy: free
|
||
|
tasks:
|
||
|
- include: setup_app.yml
|
||
|
when: "'' in ansible_hostname"
|
||
|
- include: setup_elasticsearch.yml
|
||
|
when: "'search' in group_names"
|
||
|
- include: setup_mongo.yml
|
||
|
when: "'mongo' in ansible_hostname"
|
||
|
- include: setup_node.yml
|
||
|
when: "'node' in group_names"
|
||
|
- include: setup_postgres.yml
|
||
|
when: "'postgres' in ansible_hostname"
|
||
|
- include: setup_redis.yml
|
||
|
when: "'redis' in ansible_hostname"
|
||
|
|