You can simply do it by having multiple plays in one playbook. Many ways to 
skin this cat.

```
---
- name: reboot server 1
   hosts: server1
   tasks:
     - reboot
- name: reboot the rest
   hosts: zoneA, !server1
   tasks:
      - reboot
```

Sent from my iPhone

> On 15 Feb 2022, at 07:13, jayanth reddy <reddyjayant...@gmail.com> wrote:
> 
> 
> Hi Team,
> 
> I have multiple servers in one region and seperated with zone a &b
> 
> I need to reboot one system in zone a and once it come back i need to reboot 
> rest of the systeme in zone a. 
> Can you help with condition to write a ansible play for this.
> Thanks in advance
> 
> Best regards,
> Jayanth
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Ansible Development" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to ansible-devel+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/ansible-devel/CAKEUuo5HWBt3vU0OBPVWyqTOB8z9KgxBjN4R%2B2ZgQUCeQsQ-RQ%40mail.gmail.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ansible-devel+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-devel/01A17801-907B-45E0-9907-098BB579574B%40gmail.com.

Reply via email to