<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/ruby-gems/chef.git/lib/chef/resource, branch https</title>
<subtitle>github.com: opscode/chef.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/'/>
<entry>
<title>double quotes in example for string interpolation</title>
<updated>2020-08-12T14:01:38+00:00</updated>
<author>
<name>Karl Amrhein</name>
<email>karlamrhein@gmail.com</email>
</author>
<published>2020-08-12T14:01:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=a400458de5335da1d91e0c9fc25de6e86008a292'/>
<id>a400458de5335da1d91e0c9fc25de6e86008a292</id>
<content type='text'>
In the example:
```
execute 'test_rule' do
          command 'command_to_run
            --option value
            --option value
            --source \#{node[:name_of_node][:ipsec][:local][:subnet]}
            -j test_rule'
          action :nothing
        end
```

that example command would not run correctly because the variable #{node{node[:name_of_node][:ipsec][:local][:subnet]}
would not be evaluated.  

changing to double quotes fixes the example.  

Obvious fix.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the example:
```
execute 'test_rule' do
          command 'command_to_run
            --option value
            --option value
            --source \#{node[:name_of_node][:ipsec][:local][:subnet]}
            -j test_rule'
          action :nothing
        end
```

that example command would not run correctly because the variable #{node{node[:name_of_node][:ipsec][:local][:subnet]}
would not be evaluated.  

changing to double quotes fixes the example.  

Obvious fix.</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify property definition.</title>
<updated>2020-08-07T21:45:51+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-08-07T19:10:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=43314d143c95c06b0fbff83ead0b15460d2d3058'/>
<id>43314d143c95c06b0fbff83ead0b15460d2d3058</id>
<content type='text'>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused instance variable.</title>
<updated>2020-08-07T21:45:51+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-06-17T22:35:21+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=69abc772ab53f689efa697989f634667c9e2eff0'/>
<id>69abc772ab53f689efa697989f634667c9e2eff0</id>
<content type='text'>
Introcduced 12 years ago, probably just cruft that never got cleaned up:
https://github.com/chef/chef/commit/f826880c267755005fccb93bdac6105a3a8e24b2

Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introcduced 12 years ago, probably just cruft that never got cleaned up:
https://github.com/chef/chef/commit/f826880c267755005fccb93bdac6105a3a8e24b2

Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert set_or_return use to property, copy docs from docs site.</title>
<updated>2020-08-07T21:45:51+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-06-17T00:56:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=289d3d5a744011ef5d2c97316facc266bfb47e6c'/>
<id>289d3d5a744011ef5d2c97316facc266bfb47e6c</id>
<content type='text'>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>chef_client_systemd_timer: Fix failures in the :remove action</title>
<updated>2020-08-07T17:48:39+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith84@gmail.com</email>
</author>
<published>2020-08-07T17:48:39+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=be13cbd6bbdf82a6419bd2612f10db698a963d3d'/>
<id>be13cbd6bbdf82a6419bd2612f10db698a963d3d</id>
<content type='text'>
Get the actual systemd action right. Add a kitchen test for this as well.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Get the actual systemd action right. Add a kitchen test for this as well.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #10260 from chef/lcg/windows-custom-resources-unified-mode</title>
<updated>2020-08-04T19:14:55+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@chef.io</email>
</author>
<published>2020-08-04T19:14:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=3c0e4bc2fbf97f433ec4f46c938c1bcbcb135450'/>
<id>3c0e4bc2fbf97f433ec4f46c938c1bcbcb135450</id>
<content type='text'>
Convert windows custom resources to unified_mode</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert windows custom resources to unified_mode</pre>
</div>
</content>
</entry>
<entry>
<title>Convert windows custom resources to unified_mode</title>
<updated>2020-08-04T18:30:44+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2020-08-04T18:30:44+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=b4d57ddf14d8dabebea50ff2dc3e64647fc32c25'/>
<id>b4d57ddf14d8dabebea50ff2dc3e64647fc32c25</id>
<content type='text'>
Tiny bit of code rage included to wipe out a completely unnecessary
nodoc property I found in two of these.

There are 7 other non-custom-resource-style windows resources that
need converting that are all that is left.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tiny bit of code rage included to wipe out a completely unnecessary
nodoc property I found in two of these.

There are 7 other non-custom-resource-style windows resources that
need converting that are all that is left.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove more requires that come for free</title>
<updated>2020-08-04T17:40:21+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith84@gmail.com</email>
</author>
<published>2020-08-04T16:03:30+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=10bc6366052a06c9445c40f2bbb4d84cd64499ae'/>
<id>10bc6366052a06c9445c40f2bbb4d84cd64499ae</id>
<content type='text'>
The universal DSL includes all this stuff. In resource we include the universal DSL, but we also include several of the things it includes.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The universal DSL includes all this stuff. In resource we include the universal DSL, but we also include several of the things it includes.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>fix second chef run hang</title>
<updated>2020-08-04T14:43:43+00:00</updated>
<author>
<name>dheerajd-msys</name>
<email>dheeraj.dubey@msystechnologies.com</email>
</author>
<published>2020-08-04T14:43:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=da6f8943a3a751793b61da31c1675df476824899'/>
<id>da6f8943a3a751793b61da31c1675df476824899</id>
<content type='text'>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #10249 from chef/lcg/openssl-resources-unified-mode</title>
<updated>2020-08-04T01:46:01+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith@chef.io</email>
</author>
<published>2020-08-04T01:46:01+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=eaa8f924bbe2d1c2c9f4d1073bca7d2fa8a15140'/>
<id>eaa8f924bbe2d1c2c9f4d1073bca7d2fa8a15140</id>
<content type='text'>
Convert openssl resources to unified_mode</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Convert openssl resources to unified_mode</pre>
</div>
</content>
</entry>
</feed>
