From aa129e4eb42d34979db2fb2a5d349358900c7518 Mon Sep 17 00:00:00 2001 From: Jonathan Strootman Date: Tue, 26 Apr 2016 11:45:11 -0700 Subject: [PATCH] Add tags to main.yml --- tasks/main.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index eb7ecc4..bb33824 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,16 +1,32 @@ --- - name: check-parameters include: checkParameters.yml + tags: + - check - name: os-specific vars include_vars: "{{ansible_os_family}}.yml" - include: java.yml + tags: + - java - include: elasticsearch.yml + tags: + - install - include: elasticsearch-config.yml + tags: + - config - include: elasticsearch-scripts.yml when: es_scripts + tags: + - scripts - include: elasticsearch-plugins.yml when: es_plugins is defined or es_plugins_reinstall + tags: + - plugins - include: elasticsearch-service.yml + tags: + - service - include: elasticsearch-templates.yml when: es_templates -- meta: flush_handlers \ No newline at end of file + tags: + - templates +- meta: flush_handlers