From 519bae263b1fadc452de6a7924a0f3be8bda0c8b Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Tue, 11 Jun 2019 15:31:06 +0200 Subject: [PATCH] ansible-playbooks/general#85 Bug fixes from regex search & replace --- tasks/cleanup.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/cleanup.yml b/tasks/cleanup.yml index 5e7a785..17d352f 100644 --- a/tasks/cleanup.yml +++ b/tasks/cleanup.yml @@ -6,8 +6,8 @@ name: '{{ item }}' state: absent with_items: - - '{{( static_ipv4|default(false) }})' - - '{{( host }})' + - '{{ static_ipv4|default(false) }}' + - '{{ host }}' - name: Remove host from hosts file 1 lineinfile: -- GitLab