<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Understand Core Components of Ansible &#8211; Part 1	</title>
	<atom:link href="https://www.tecmint.com/understand-core-components-of-ansible/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/understand-core-components-of-ansible/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 23 Dec 2019 08:21:01 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1302496</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 06 Dec 2019 07:21:55 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=34389#comment-1302496</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1294807&quot;&gt;Ravi Saive&lt;/a&gt;.

@Ahmed,

We have published Part 5 and Part 6 of this Ansible series, hope you like it.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1294807">Ravi Saive</a>.</p>
<p>@Ahmed,</p>
<p>We have published Part 5 and Part 6 of this Ansible series, hope you like it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1294807</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 25 Nov 2019 04:39:31 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=34389#comment-1294807</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1293753&quot;&gt;Ahmed&lt;/a&gt;.

@Ahmed,

Yes, we are in progress to publish Part 6 of this Ansible series soon.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1293753">Ahmed</a>.</p>
<p>@Ahmed,</p>
<p>Yes, we are in progress to publish Part 6 of this Ansible series soon.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ahmed		</title>
		<link>https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1293753</link>

		<dc:creator><![CDATA[Ahmed]]></dc:creator>
		<pubDate>Fri, 22 Nov 2019 09:58:47 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=34389#comment-1293753</guid>

					<description><![CDATA[Please Publish Part5 onward tutorials.]]></description>
			<content:encoded><![CDATA[<p>Please Publish Part5 onward tutorials.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1266127</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Fri, 11 Oct 2019 03:53:51 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=34389#comment-1266127</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1265780&quot;&gt;Bernard&lt;/a&gt;.

@Bernard,

Thanks for pointing out the error, corrected in the article.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1265780">Bernard</a>.</p>
<p>@Bernard,</p>
<p>Thanks for pointing out the error, corrected in the article.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bernard		</title>
		<link>https://www.tecmint.com/understand-core-components-of-ansible/comment-page-1/#comment-1265780</link>

		<dc:creator><![CDATA[Bernard]]></dc:creator>
		<pubDate>Thu, 10 Oct 2019 16:51:40 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=34389#comment-1265780</guid>

					<description><![CDATA[Excellent comprehensive Ansible tutorial!
There&#039;s a, probably not intended; little error in your playbook example.
&lt;pre&gt;
  tasks:
  - name: Install Apache Webserver 
    yum:   name=httpd  state=present

 - name: check httpd status
    yum:   name=httpd  state=started   &#060;--- Error
&lt;/pre&gt;
Yum doesn&#039;t have a started option under it&#039;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]]></description>
			<content:encoded><![CDATA[<p>Excellent comprehensive Ansible tutorial!<br />
There&#8217;s a, probably not intended; little error in your playbook example.</p>
<pre>
  tasks:
  - name: Install Apache Webserver 
    yum:   name=httpd  state=present

 - name: check httpd status
    yum:   name=httpd  state=started   &lt;--- Error
</pre>
<p>Yum doesn&#8217;t have a started option under it&#8217;s state parameter, the service module does though.</p>
<p>YUM <a target="_blank" href="https://docs.ansible.com/ansible/latest/modules/yum_module.html" rel="nofollow ugc">https://docs.ansible.com/ansible/latest/modules/yum_module.html</a></p>
<p>Service <a target="_blank" href="https://docs.ansible.com/ansible/latest/modules/service_module.html" rel="nofollow ugc">https://docs.ansible.com/ansible/latest/modules/service_module.html</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
