Skip to content

Commit 65ff5ab

Browse files
committed
stepupmiddleware (and stepup) tags must also be included in the condition for normal deploys
1 parent b6079a1 commit 65ff5ab

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

roles/stepupmiddleware/tasks/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@
33
when: "'docker' in group_names
44
and ('push_mw_config' in ansible_run_tags
55
or 'push_mw_institution' in ansible_run_tags
6-
or 'push_mw_whitelist' in ansible_run_tags)"
6+
or 'push_mw_whitelist' in ansible_run_tags
7+
or 'stepupmiddleware' in ansible_run_tags
8+
or 'stepup' in ansible_run_tags)"
79

810
- name: Include vm tasks when running on a vm
911
import_tasks: vm.yml
1012
when: "'docker' not in group_names
1113
and ('push_mw_config' in ansible_run_tags
1214
or 'push_mw_institution' in ansible_run_tags
13-
or 'push_mw_whitelist' in ansible_run_tags)"
15+
or 'push_mw_whitelist' in ansible_run_tags
16+
or 'stepupmiddleware' in ansible_run_tags
17+
or 'stepup' in ansible_run_tags)"

0 commit comments

Comments
 (0)