From 4ca473b94495883ef88041a12c369ae42b2498e7 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Tue, 30 Nov 2021 15:17:07 +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: I7024d962ed858b0442583e24612a5da4d3fa37e7 --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index ea4a969..da1ffb2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -149,7 +149,7 @@ - systemd-networkd - name: Create systemd-networkd network link(s) - config_template: + openstack.config_template.config_template: src: "systemd-link.j2" dest: "/etc/systemd/network/{{ (item.1.filename | default(systemd_networkd_filename_alt)) ~ '.link' }}" owner: "root" @@ -165,7 +165,7 @@ - systemd-networkd - name: Create systemd-networkd network network(s) - config_template: + openstack.config_template.config_template: src: "systemd-network.j2" dest: "/etc/systemd/network/{{ (item.1.filename | default(systemd_networkd_filename_alt)) ~ '.network' }}" owner: "root"