From 91a4813c0c22b56a408629a175d360ce7a36562d Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Thu, 20 Jun 2019 18:51:16 +0200 Subject: [PATCH] add post task to force handlers --- tasks/main.yml | 1 + tasks/post_tasks.yml | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 tasks/post_tasks.yml diff --git a/tasks/main.yml b/tasks/main.yml index dfd14f0..815c0b0 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,3 +3,4 @@ set_fact: require_reboot: "{{ true if network_fqdn != ansible_fqdn else false }}" - include_tasks: config.yml +- include_tasks: post_tasks.yml diff --git a/tasks/post_tasks.yml b/tasks/post_tasks.yml new file mode 100644 index 0000000..ed0d3ca --- /dev/null +++ b/tasks/post_tasks.yml @@ -0,0 +1,3 @@ +--- +- name: Force running handlers + meta: flush_handlers