<?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: Niharika Arya </title>
    <description>The latest articles on Debug School by Niharika Arya  (@niharika17ec030_348).</description>
    <link>https://www.debug.school/niharika17ec030_348</link>
    <image>
      <url>https://www.debug.school/images/CyjMr93ubgnJEiobaOc1KTNVywhQVgKFoafz3txF5ys/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly93d3cu/ZGVidWcuc2Nob29s/L3VwbG9hZHMvdXNl/ci9wcm9maWxlX2lt/YWdlLzI0My8wM2Fi/NjFjYy1iNDJiLTRm/NWUtODQ4Yy02MzJl/Yzc2Zjk3ODUucG5n</url>
      <title>Debug School: Niharika Arya </title>
      <link>https://www.debug.school/niharika17ec030_348</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://www.debug.school/feed/niharika17ec030_348"/>
    <language>en</language>
    <item>
      <title>Chef assignment 1</title>
      <dc:creator>Niharika Arya </dc:creator>
      <pubDate>Tue, 22 Nov 2022 18:37:38 +0000</pubDate>
      <link>https://www.debug.school/niharika17ec030_348/chef-assignment-1-4f</link>
      <guid>https://www.debug.school/niharika17ec030_348/chef-assignment-1-4f</guid>
      <description>&lt;p&gt;Write a recipe to create a&lt;br&gt;
file which should be owned by group called “root”, user “ec2-user” and permission executable.&lt;/p&gt;

&lt;p&gt;user 'ec2-user' do&lt;br&gt;
password 'chef#123'&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;file 'assisgnmentday1.txt' do&lt;br&gt;
content "this is text file."&lt;br&gt;
mode '0755'&lt;br&gt;
owner 'ec2-user'&lt;br&gt;
group 'root'&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;Write a chef recipe to install git.&lt;/p&gt;

&lt;p&gt;package 'git' do&lt;br&gt;
action :install&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;git 'gitclone' do&lt;br&gt;
remote 'origin'&lt;br&gt;
repository '&lt;a href="https://github.com/scmgalaxy/helloworld-java-maven"&gt;https://github.com/scmgalaxy/helloworld-java-maven&lt;/a&gt;'&lt;br&gt;
user 'root'&lt;br&gt;
action: sync&lt;br&gt;
end&lt;/p&gt;

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