diff options
author | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-02-22 11:53:19 +0100 |
---|---|---|
committer | Gaëtan Duchaussois <gaetan.duchaussois@fretlink.com> | 2018-02-22 11:57:08 +0100 |
commit | f7dd5848f817bb42cb06eadc5444ec390aa813ba (patch) | |
tree | 7459517d6b8b850959313d5c30f25f18fcda5531 /tasks/environment.yml | |
parent | 4882b0d33ce42a3b01ac9689d1809e362f314d3f (diff) | |
download | ansible-clever-f7dd5848f817bb42cb06eadc5444ec390aa813ba.tar.gz ansible-clever-f7dd5848f817bb42cb06eadc5444ec390aa813ba.tar.zst ansible-clever-f7dd5848f817bb42cb06eadc5444ec390aa813ba.zip |
Migrating single tasks file to a galaxy role
Diffstat (limited to 'tasks/environment.yml')
-rw-r--r-- | tasks/environment.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tasks/environment.yml b/tasks/environment.yml new file mode 100644 index 0000000..3d1ddbf --- /dev/null +++ b/tasks/environment.yml | |||
@@ -0,0 +1,11 @@ | |||
1 | - name: Create environment file | ||
2 | template: | ||
3 | src: env.j2 | ||
4 | dest: "{{ clever_app_confdir }}/env" | ||
5 | no_log: true | ||
6 | |||
7 | - name: Create add_ons variable file | ||
8 | include_tasks: addon.yml | ||
9 | vars: | ||
10 | addon: "{{ item }}" | ||
11 | with_items: "{{ clever_addons }}" | ||