From 4d819ac2a15472a6ade76758ff6671d0e29ba938 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Wed, 19 Jul 2017 15:57:41 +0200 Subject: [PATCH] Add tags to ssl and site configuration --- tasks/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks/main.yml b/tasks/main.yml index 462dd65..e709077 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,12 +2,15 @@ - name: INCLUDE_VARS | Related to OS include_vars: "{{ ansible_distribution }}.yml" + tags: ['nginx::site', 'nginx::ssl'] - name: INCLUDE | Install include: install_{{ ansible_distribution }}.yml + tags: ['nginx::site', 'nginx::ssl'] - name: INCLUDE | Prepare include: prepare.yml + tags: ['nginx::site', 'nginx::ssl'] - name: INCLUDE | Manage dynamic modules include: dyn_modules.yml @@ -24,6 +27,8 @@ - name: INCLUDE | SSL configuration include: ssl.yml + tags: ['nginx::ssl'] - name: INCLUDE | Sites configuration include: site.yml + tags: ['nginx::site']