Hi all,
Please see my playbook below. I call 2 executions on different hosts in 1
playbook.
The first execution changes some variables in a vars file which would be
used in next execution (create new backup folder and update its name to
another vars file)
The second execution try to use 2 vars file to do backup tasks (using
roles). The issue I met here is the vars file value were loaded with old
value not the updated. Seem all defined vars files were loaded before tasks
executed on all hosts, and update during running task doesn't effect.
I can separate this playbook into 2 playbooks and all work well as expected
but I'm trying to combine 1 playbook. Do anyone can show me how to reload
vars file in correctly executing tasks/roles ? I exactly want the second
execution load the updated vars file before running roles.
## backup playbook
---
- hosts: ftpserver01
gather_facts: no
ignore_errors: yes
vars_files:
- ./vars_files/lab1.yml
roles:
- create_define_backup_folder <--- this role will create new backup
folder and update its name in ./vars_files/global_vars.yml
- hosts: terminal02
become: yes
become_method: su
gather_facts: no
ignore_errors: yes
vars_files:
- ./vars_files/lab1.yml
- ./vars_files/global_vars.yml <-- expect run with new update from
upper task but not.
roles:
- backup_feature01
- backup_feature02
--
You received this message because you are subscribed to the Google Groups
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/ansible-project/4be6722a-93ef-473a-944f-3b4d85b8466f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.