Commit 4b9d789c by arbabnazar

add the tags to the tasks

parent 2835f7ca
--- ---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
##
# Defaults for role asqatasun
#
ASQATASUN_LOCALE: 'en_US.UTF-8' ASQATASUN_LOCALE: 'en_US.UTF-8'
ASQATASUN_DATABASE_NAME: 'asqatasun' ASQATASUN_DATABASE_NAME: 'asqatasun'
ASQATASUN_DATABASE_USER: 'asqatasun' ASQATASUN_DATABASE_USER: 'asqatasun'
......
--- ---
#
# edX Configuration
#
# github: https://github.com/edx/configuration
# wiki: https://github.com/edx/configuration/wiki
# code style: https://github.com/edx/configuration/wiki/Ansible-Coding-Conventions
# license: https://github.com/edx/configuration/blob/master/LICENSE.TXT
#
# Tasks for role asqatasun
#
# Overview:
#
# Install the Asqatasun, an opensource web site analyzer,
# used for web accessibility (a11y) and Search Engine Optimization (SEO)
#
# ansible-playbook -i 'asqatasun.example.com,' ./asqatasun.yml -e@/ansible/vars/deployment.yml -e@/ansible/vars/env-deployment.yml
#
- name: Set Postfix options - name: Set Postfix options
debconf: debconf:
name: postifx name: postifx
...@@ -73,6 +90,9 @@ ...@@ -73,6 +90,9 @@
group: root group: root
mode: 755 mode: 755
register: xvfb register: xvfb
tags:
- install
- install:config
- name: Restart xvfb - name: Restart xvfb
service: service:
...@@ -81,6 +101,9 @@ ...@@ -81,6 +101,9 @@
state: restarted state: restarted
enabled: yes enabled: yes
when: xvfb.changed when: xvfb.changed
tags:
- install
- install:config
- name: Download the latest ESR Firfox - name: Download the latest ESR Firfox
get_url: get_url:
...@@ -142,6 +165,9 @@ ...@@ -142,6 +165,9 @@
/bin/ps aux | grep -i asqatasun /bin/ps aux | grep -i asqatasun
register: asqatasun_app register: asqatasun_app
changed_when: no changed_when: no
tags:
- install
- install:base
- name: Install the Asqatasun - name: Install the Asqatasun
shell: > shell: >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment