Add tags to ssl and site configuration

pull/35/head
Emilien Mantel 2017-07-19 15:57:41 +02:00
parent af9fa6a2c3
commit 4d819ac2a1
1 changed files with 5 additions and 0 deletions

View File

@ -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']