You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
4 years ago
|
---
|
||
|
|
||
|
- name: Remove sample config file
|
||
|
file: path={{ element_root_dir }}/web/config.sample.json state=absent
|
||
|
tags: matrix
|
||
|
|
||
|
- name: Deploy configuration
|
||
|
template: src=config.json.j2 dest={{ element_root_dir }}/web/config.json
|
||
|
tags: matrix
|
||
|
|
||
|
- name: Deploy httpd configuration
|
||
|
template: src=httpd.conf.j2 dest=/etc/httpd/ansible_conf.d/10-element_{{ element_id }}.conf
|
||
|
notify: reload httpd
|
||
|
tags: matrix
|
||
|
|