I'm guessing that what's going on here is that you're rebooting, but during
the shutdown the mysql service is still running and port 3306 is up, so
that when it gets to the wait_for task it succeeds and moves on. You may
either want to add in a pause there before the wait_for, or you can add in
a delay to the wait_for to cause it to delay its first polling attempt.

Hope that helps!


On Thu, Jun 5, 2014 at 3:05 AM, Mark van der Hout <[email protected]
> wrote:

> Hi,
> Kinda new to Ansible and I'm struggling with the following:
>
> I want to update a MYSQL server -> httpd -> varnish server. in that order.
> I want to check, after the server rebooted, if the service mysqld or httpd
> is started before I continue with the httpd or varnish server.
> Right now I have this but the post task runs way to fast before the server
> is restarted so it returns that the service is started:
> Following is a code snippit, for the app server i instructed it to wait
> for port 80 and service httpd. but its the same.
>
> Question is: How do I check if the server and service is up and running
> before I continue with the other servers in the playbook.
> Thanks!
>
> - hosts: dbservers
>   user: root
>   serial: 1
>
>   tasks:
>   - name: upgrade all packages + when done restart server
>     yum: name=* state=latest
>     notify:
>     - restart server db
>   handlers:
>    - name: restart server db
>      command: reboot
>
>   post_tasks:
>   - name: wait for db server to come up
>     wait_for: host={{ inventory_hostname }} port=3306 state=started
> timeout=80
>   - name: make sure mysql is started
>     service: name=mysqld state=started
>
>  --
> 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/dbf7d673-c388-455d-af2c-06dcfb4b47f5%40googlegroups.com
> <https://groups.google.com/d/msgid/ansible-project/dbf7d673-c388-455d-af2c-06dcfb4b47f5%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAMFyvFjV0cRVxJeTLdk8hzqb62AKF9szYZX25ZL%2BbhtDeCbKWg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to