From 88cc8cf7fedf35cd51c29dcadac94f288c08b22b Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 19 May 2018 11:48:11 +0200 Subject: [PATCH] avoid gathering facts when we do not need to --- site.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/site.yml b/site.yml index bc19efe..0d82190 100644 --- a/site.yml +++ b/site.yml @@ -1,28 +1,34 @@ - hosts: all + gather_facts: no + pre_tasks: + - setup: roles: - base tags: base -- import_playbook: upgrade.yml - - hosts: letsencrypt + gather_facts: no roles: - letsencrypt tags: letsencrypt +# FIXME make this a role, or several - import_playbook: email.yml - hosts: bind + gather_facts: no roles: - bind tags: bind - hosts: prosody + gather_facts: no roles: - prosody tags: prosody - hosts: apache + gather_facts: no roles: - apache tags: apache -- 2.30.2