From d1e1b651441b95ea855c89a0bfa005d30451284e Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 30 Nov 2021 15:17:28 +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: I377c7b182861a8c53c3ab43690c2bed0d648f3ae --- tasks/trove_post_install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/trove_post_install.yml b/tasks/trove_post_install.yml index 0343b5b..f39e793 100644 --- a/tasks/trove_post_install.yml +++ b/tasks/trove_post_install.yml @@ -26,7 +26,7 @@ run_once: true - name: Drop trove api Config(s) - config_template: + openstack.config_template.config_template: src: "{{ item.src }}" dest: "{{ item.dest }}" owner: "{{ trove_system_user_name }}" @@ -52,7 +52,7 @@ - Restart uwsgi services - name: Implement policy.yaml if there are overrides configured - config_template: + openstack.config_template.config_template: content: "{{ trove_policy_overrides }}" dest: "/etc/trove/policy.yaml" owner: "{{ trove_system_user_name }}"