From 68e2e5e1b72803edd7319016ac5bbb9a166e7d3c Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Wed, 20 Sep 2017 10:30:37 +0100 Subject: [PATCH] Add node_config_directory variable to overcloud service config save playbook This should have been added with commit 513cfe990dd4bf127e05f2f2985949e498abd089. --- ansible/overcloud-service-config-save.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ansible/overcloud-service-config-save.yml b/ansible/overcloud-service-config-save.yml index c54985cf1..fe940aca1 100644 --- a/ansible/overcloud-service-config-save.yml +++ b/ansible/overcloud-service-config-save.yml @@ -5,10 +5,13 @@ # Override this to change the directory in which the configuration will be # saved. config_save_path: "{{ lookup('env', 'PWD') ~ '/overcloud-config' }}" + # Override this to change the directory on the remote hosts from which the + # kolla-ansible configuration will be saved. + node_config_directory: "/etc/kolla" tasks: - name: Find overcloud service configuration files find: - paths: "/etc/kolla" + paths: "{{ node_config_directory }}" recurse: True register: find_result