<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Debug School: Ishitaa Gangadhara </title>
    <description>The latest articles on Debug School by Ishitaa Gangadhara  (@ishitaa2601_003).</description>
    <link>https://www.debug.school/ishitaa2601_003</link>
    <image>
      <url>https://www.debug.school/images/4qIGGf_TMnFlWjUtwfFeoM-gsabagg8zLJWdvlf4tyQ/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzI0NC9jY2Vk/YzM3Ni0zNjJmLTQ2/MjMtODgxYS04Nzhk/NGFjMTk0NWUucG5n</url>
      <title>Debug School: Ishitaa Gangadhara </title>
      <link>https://www.debug.school/ishitaa2601_003</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/ishitaa2601_003"/>
    <language>en</language>
    <item>
      <title>Chef Assignent1</title>
      <dc:creator>Ishitaa Gangadhara </dc:creator>
      <pubDate>Tue, 22 Nov 2022 05:36:00 +0000</pubDate>
      <link>https://www.debug.school/ishitaa2601_003/chef-assignent1-4h5</link>
      <guid>https://www.debug.school/ishitaa2601_003/chef-assignent1-4h5</guid>
      <description>&lt;p&gt;&lt;strong&gt;Write a recipe to create a file which should be owned by group called “root”, user “ec2-user” and permission executable.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;`user 'ec3-user' do&lt;br&gt;
        gid 'root'&lt;br&gt;
        action :create&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;group 'root' do&lt;br&gt;
        gid 1234&lt;br&gt;
        group_name 'root'&lt;br&gt;
        members 'ec2-user'&lt;br&gt;
        action :create&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;file 'hello.txt' do&lt;br&gt;
        content "Hello welcome to Chef"&lt;br&gt;
        group "root"&lt;br&gt;
        owner "ec2-user"&lt;br&gt;
        action :create&lt;br&gt;
end&lt;br&gt;
`&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Write a chef recipe to Create a directory&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;directory '/etc/check' do&lt;br&gt;
  owner 'root'&lt;br&gt;
  group 'ec2-user'&lt;br&gt;
  mode '0755'&lt;br&gt;
  action :create&lt;br&gt;
end&lt;/code&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
