From 54a6645c5ac183515e7e5ffc6702b699f79b1d27 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 30 Nov 2021 15:17:26 +0200 Subject: [PATCH] Use config_template as a collection Since we still use ceph-ansible that has their own implementation of config_template module it's worth to use mentioned module as a collection explicitly. Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/819814 Change-Id: If7ed1c8281d3e78c5905ccc570456e998d191370 --- tasks/sahara_post_install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/sahara_post_install.yml b/tasks/sahara_post_install.yml index 6a9e5b0..f0634ca 100644 --- a/tasks/sahara_post_install.yml +++ b/tasks/sahara_post_install.yml @@ -12,7 +12,7 @@ # limitations under the License. - name: Drop Sahara Config(s) - config_template: + openstack.config_template.config_template: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "{{ sahara_system_user_name }}" @@ -40,7 +40,7 @@ - Restart uwsgi services - name: Implement policy.yaml if there are overrides configured - config_template: + openstack.config_template.config_template: content: "{{ sahara_policy_overrides }}" dest: "/etc/sahara/policy.yaml" owner: "{{ sahara_system_user_name }}"