
Change-Id: I6189ebd0151207b2e9807f1174c1f3eb4719d90a Implements: blueprint ansible-horizon Co-Authored-By: Harm Weites <harm@weites.com> Co-Authored-By: Sam Yaple <sam@yaple.net>
17 lines
412 B
YAML
17 lines
412 B
YAML
---
|
|
- name: Ensuring config directory exists
|
|
file:
|
|
path: "{{ node_config_directory }}/horizon/"
|
|
state: "directory"
|
|
recurse: "yes"
|
|
|
|
- name: Copying over config(s)
|
|
template:
|
|
src: "horizon.conf.j2"
|
|
dest: "{{ node_config_directory }}/horizon/horizon.conf"
|
|
|
|
- name: Copying over config(s)
|
|
template:
|
|
src: "local_settings.j2"
|
|
dest: "{{ node_config_directory }}/horizon/local_settings"
|