From e7ddf9d46c047b5eea19bf2aa24b7ed95d6f57fc Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Tue, 4 May 2021 14:31:22 +0200 Subject: [PATCH] Use 'loop' syntax instead of 'with_list' --- CHANGELOG.md | 2 +- evobackup-client/tasks/verify_ssh.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46475fb4..7e1e6c00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ The **patch** part changes incrementally at each release. ### Changed -* Use 'loop' syntax instead of 'with_first_found/with_items/with_dict/with_nested' +* Use 'loop' syntax instead of 'with_first_found/with_items/with_dict/with_nested/with_list' * apt: store keys in /etc/apt/trusted.gpg.d in ascii format * evolinux-base: copy GPG key instead of using apt-key * ntpd: Add leapfile configuration setting to ntpd on debian 10+ diff --git a/evobackup-client/tasks/verify_ssh.yml b/evobackup-client/tasks/verify_ssh.yml index 4e968197..d48fb455 100644 --- a/evobackup-client/tasks/verify_ssh.yml +++ b/evobackup-client/tasks/verify_ssh.yml @@ -5,7 +5,7 @@ path: /root/.ssh/known_hosts name: "[{{ item.name }}]:{{ item.port }}" key: "[{{ item.name }}]:{{ item.port }} {{ item.fingerprint }}" - with_list: "{{ evobackup_client__hosts }}" + loop: "{{ evobackup_client__hosts }}" tags: - evobackup_client - evobackup_client_backup_hosts