Skip to content
Snippets Groups Projects
Commit 3c6f2348 authored by Aleksandr Kurbatov's avatar Aleksandr Kurbatov
Browse files

Merge branch 'tr_migr2' into 'develop'

fix in var names

See merge request !112
parents 92d762e8 ef174050
No related branches found
No related tags found
1 merge request!112fix in var names
Pipeline #85851 passed
......@@ -57,15 +57,15 @@
- name: Include compiling the template for the old node
ansible.builtin.include_tasks: compile_template.yaml
when: (verb == "deactivate" or verb == "delete")
and inventory_hostname == old_node
and inventory_hostname == old_node.fqdn
- name: Include deactivation tasks for the old node
ansible.builtin.include_tasks: deactivate_trunk_side.yaml
when: verb == "deactivate" and inventory_hostname == old_node
when: verb == "deactivate" and inventory_hostname == old_node.fqdn
- name: Include removal tasks for the old node
ansible.builtin.include_tasks: delete_trunk_side.yaml
when: verb == "delete" and inventory_hostname == old_node
when: verb == "delete" and inventory_hostname == old_node.fqdn
- name: Include compiling the template for the new node
ansible.builtin.include_tasks: compile_template.yaml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment