Skip to content

Commit 2142e48

Browse files
authored
Merge pull request #491 from OpenConext/Fix-stepup-middleware-config-push
Fix #490: Normal deploy tags must also be included
2 parents deb1832 + 65ff5ab commit 2142e48

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)