tripleo-common/roles/tripleo-bootstrap/tasks/main.yml
James Slagle 00136d8107 Create config-download dir in tripleo-bootstrap role
Instead of creating the /var/lib/heat-config/tripleo-config-download
directory before every individual server deployment, we should just do
it one time. Move the task to the new tripleo-bootstrap role which is
run at the beginning before any deployments.

Change-Id: Id8706f61df717bbe614aade659ff13b857e7f9dd
Closes-Bug: #1737801
2017-12-12 13:12:11 -05:00

13 lines
308 B
YAML

---
- name: Deploy required packages to bootstrap TripleO
yum:
name: "{{ packages_bootstrap }}"
become: true
- name: Create /var/lib/heat-config/tripleo-config-download directory for deployment data
file:
path: /var/lib/heat-config/tripleo-config-download
state: directory
become: true