Comments on: Understand Core Components of Ansible – Part 1 https://www.tecmint.com/understand-core-components-of-ansible/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Mon, 23 Dec 2019 08:21:01 +0000 hourly 1 By: Ravi Saive https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1302496 Fri, 06 Dec 2019 07:21:55 +0000 https://www.tecmint.com/?p=34389#comment-1302496 In reply to Ravi Saive.

@Ahmed,

We have published Part 5 and Part 6 of this Ansible series, hope you like it.

]]>
By: Ravi Saive https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1294807 Mon, 25 Nov 2019 04:39:31 +0000 https://www.tecmint.com/?p=34389#comment-1294807 In reply to Ahmed.

@Ahmed,

Yes, we are in progress to publish Part 6 of this Ansible series soon.

]]>
By: Ahmed https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1293753 Fri, 22 Nov 2019 09:58:47 +0000 https://www.tecmint.com/?p=34389#comment-1293753 Please Publish Part5 onward tutorials.

]]>
By: Ravi Saive https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1266127 Fri, 11 Oct 2019 03:53:51 +0000 https://www.tecmint.com/?p=34389#comment-1266127 In reply to Bernard.

@Bernard,

Thanks for pointing out the error, corrected in the article.

]]>
By: Bernard https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1265780 Thu, 10 Oct 2019 16:51:40 +0000 https://www.tecmint.com/?p=34389#comment-1265780 Excellent comprehensive Ansible tutorial!
There’s a, probably not intended; little error in your playbook example.

  tasks:
  - name: Install Apache Webserver 
    yum:   name=httpd  state=present

 - name: check httpd status
    yum:   name=httpd  state=started   <--- Error

Yum doesn’t have a started option under it’s state parameter, the service module does though.

YUM https://docs.ansible.com/ansible/latest/modules/yum_module.html

Service https://docs.ansible.com/ansible/latest/modules/service_module.html

]]>