From 9456191ecd2786c1347bb20aef8d9835dd576c2d Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen@paragon-es.de> Date: Wed, 8 Nov 2017 10:57:28 +0100 Subject: [PATCH] ansible-playbooks/general#72 Replace include_tasks with import_tasks --- tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index c104d0e..d082470 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -7,9 +7,9 @@ - block: - - include_tasks: install.yml + - import_tasks: install.yml - - include_tasks: configure.yml + - import_tasks: configure.yml - name: 'Remember that this role had been run' set_fact: role_fail2ban_completed=true -- GitLab