From e823fd812991f8d5e58d7c4a38f4500118e6ec14 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 12 Nov 2020 22:14:06 +0100 Subject: [PATCH] Fix the meta syntax --- tasks/main.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index aa37ccb..e5ad382 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,8 +10,7 @@ template: src=nexus.service.j2 dest=/etc/systemd/system/nexus.service owner=root group=root mode='0644' notify: Reload the systemd data - - meta: - free_form: flush_handlers + - meta: flush_handlers tags: [ 'nexus', 'nexus_oss' ] @@ -30,8 +29,7 @@ - name: Install the nexus access logs configuration template: src=logback-access.xml.j2 dest={{ nexus_webapp_dir }}/conf/logback-access.xml owner=root group=root mode='0644' - - meta: - free_form: flush_handlers + - meta: flush_handlers when: nexus_major_version == '2' tags: [ 'nexus', 'nexus_oss' ]