Commit 20b2a559 by Calen Pennington

Merge pull request #2504 from cpennington/add-prefix-tags

Add prefix tags for existing tags in edx_ansible tasks
parents 4e045953 f6d7ca09
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
accept_hostkey=yes accept_hostkey=yes
sudo_user: "{{ edx_ansible_user }}" sudo_user: "{{ edx_ansible_user }}"
tags: tags:
- install
- install:code - install:code
- name : install edx_ansible venv requirements - name : install edx_ansible venv requirements
...@@ -14,6 +15,7 @@ ...@@ -14,6 +15,7 @@
sudo_user: "{{ edx_ansible_user }}" sudo_user: "{{ edx_ansible_user }}"
with_items: "{{ edx_ansible_requirements_files }}" with_items: "{{ edx_ansible_requirements_files }}"
tags: tags:
- install
- install:app-requirements - install:app-requirements
- name: create update script - name: create update script
...@@ -21,6 +23,7 @@ ...@@ -21,6 +23,7 @@
dest={{ edx_ansible_app_dir}}/update dest={{ edx_ansible_app_dir}}/update
src=update.j2 owner={{ edx_ansible_user }} group={{ edx_ansible_user }} mode=755 src=update.j2 owner={{ edx_ansible_user }} group={{ edx_ansible_user }} mode=755
tags: tags:
- install
- install:configuration - install:configuration
- name: create a symlink for update.sh - name: create a symlink for update.sh
...@@ -29,6 +32,7 @@ ...@@ -29,6 +32,7 @@
dest={{ COMMON_BIN_DIR }}/update dest={{ COMMON_BIN_DIR }}/update
state=link state=link
tags: tags:
- install
- install:configuration - install:configuration
- name: create a symlink for ansible-playbook - name: create a symlink for ansible-playbook
...@@ -37,6 +41,7 @@ ...@@ -37,6 +41,7 @@
dest={{ COMMON_BIN_DIR }}/ansible-playbook dest={{ COMMON_BIN_DIR }}/ansible-playbook
state=link state=link
tags: tags:
- install
- install:configuration - install:configuration
- name: create a symlink for the playbooks dir - name: create a symlink for the playbooks dir
...@@ -45,4 +50,5 @@ ...@@ -45,4 +50,5 @@
dest={{ COMMON_CFG_DIR }}/playbooks dest={{ COMMON_CFG_DIR }}/playbooks
state=link state=link
tags: tags:
- install
- install:configuration - install:configuration
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