<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/ruby-gems/chef.git/spec/unit/application, branch php</title>
<subtitle>github.com: opscode/chef.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/'/>
<entry>
<title>Stop mixlib-cli default clobbering mixlib-config settings</title>
<updated>2018-02-27T04:32:51+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2018-02-27T04:32:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=7a09548c07dc473c220cd9b4def190d53b7e8c0f'/>
<id>7a09548c07dc473c220cd9b4def190d53b7e8c0f</id>
<content type='text'>
The pre-14 precedence level is:

1. mixlib-cli setting
2. mixlib-cli default
3. mixlib-config setting
4. mixlib-config default

This means that if an option has a mixlib-cli default that it cannot
ever be set in the config file.

This PR swaps 2+3 around:

1. mixlib-cli setting
2. mixlib-config setting
3. mixlib-cli default
4. mixlib-config default

Now the mixlib-cli defaults still take precedence over mixlib-config
defaults, but it is possible to set a value in config.rb if there's
a mixlib-cli default setting (which creeps into the settings in hidden
ways if you just use `boolean: true` in mixlib-cli).

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The pre-14 precedence level is:

1. mixlib-cli setting
2. mixlib-cli default
3. mixlib-config setting
4. mixlib-config default

This means that if an option has a mixlib-cli default that it cannot
ever be set in the config file.

This PR swaps 2+3 around:

1. mixlib-cli setting
2. mixlib-config setting
3. mixlib-cli default
4. mixlib-config default

Now the mixlib-cli defaults still take precedence over mixlib-config
defaults, but it is possible to set a value in config.rb if there's
a mixlib-cli default setting (which creeps into the settings in hidden
ways if you just use `boolean: true` in mixlib-cli).

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "Fail on interval runs on windows"</title>
<updated>2018-01-23T20:11:01+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2018-01-23T20:11:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=9f78fdbdbdf43659ce2c13f2838e7db2178c5726'/>
<id>9f78fdbdbdf43659ce2c13f2838e7db2178c5726</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fail on interval runs on windows</title>
<updated>2018-01-22T20:01:44+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2018-01-22T20:01:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=dedb5670db29b7f6bedb037888d5a4b3bcd6ff83'/>
<id>dedb5670db29b7f6bedb037888d5a4b3bcd6ff83</id>
<content type='text'>
closes #4824

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
closes #4824

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove deprecated -r option for Solo mode</title>
<updated>2018-01-01T18:58:50+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith@chef.io</email>
</author>
<published>2018-01-01T18:15:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=eb492c8c51ecb8f0c247d18f0eeb56269808b62d'/>
<id>eb492c8c51ecb8f0c247d18f0eeb56269808b62d</id>
<content type='text'>
We claimed we were going to remove this in Chef 13. Let's stop rewriting
ARGs now.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We claimed we were going to remove this in Chef 13. Let's stop rewriting
ARGs now.

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Always run reconfigure between runs, and when HUP'd</title>
<updated>2017-05-31T19:20:20+00:00</updated>
<author>
<name>Bryan McLellan</name>
<email>btm@loftninjas.org</email>
</author>
<published>2017-05-04T15:41:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=a1e38709047c3afd0ad6ced65e959b68a37075a5'/>
<id>a1e38709047c3afd0ad6ced65e959b68a37075a5</id>
<content type='text'>
We can't reconfigure in a trap context because we might open files or another
activity that could cause a deadlock. Ruby 2.0+ now prevents this by raising a
ThreadError.

This now runs reconfigure after every daemonized run, but still takes a HUP in
case you need to reconfigure while sleeping.

Fixes #4578

Signed-off-by: Bryan McLellan &lt;btm@loftninjas.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We can't reconfigure in a trap context because we might open files or another
activity that could cause a deadlock. Ruby 2.0+ now prevents this by raising a
ThreadError.

This now runs reconfigure after every daemonized run, but still takes a HUP in
case you need to reconfigure while sleeping.

Fixes #4578

Signed-off-by: Bryan McLellan &lt;btm@loftninjas.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>removing the use of Chef::Exception::DeprecatedExitCode</title>
<updated>2017-04-04T20:29:44+00:00</updated>
<author>
<name>Steven Murawski</name>
<email>steven.murawski@gmail.com</email>
</author>
<published>2017-04-04T20:29:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=d08cbdaad788da3b9b1658717353f939361b3add'/>
<id>d08cbdaad788da3b9b1658717353f939361b3add</id>
<content type='text'>
Signed-off-by: Steven Murawski &lt;steven.murawski@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Steven Murawski &lt;steven.murawski@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>use rfc exit codes</title>
<updated>2017-04-04T20:15:00+00:00</updated>
<author>
<name>Steven Murawski</name>
<email>steven.murawski@gmail.com</email>
</author>
<published>2017-04-04T20:15:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=4b0926387418cd8d4105c125aebd23e68b612ff4'/>
<id>4b0926387418cd8d4105c125aebd23e68b612ff4</id>
<content type='text'>
Signed-off-by: Steven Murawski &lt;steven.murawski@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Steven Murawski &lt;steven.murawski@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Structure deprecations with additional metadata</title>
<updated>2016-11-16T16:28:15+00:00</updated>
<author>
<name>Thom May</name>
<email>thom@chef.io</email>
</author>
<published>2016-10-14T15:46:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=64b8b0efd90e59ad609ba30fe4bc7ff19e70e940'/>
<id>64b8b0efd90e59ad609ba30fe4bc7ff19e70e940</id>
<content type='text'>
This adds URLs to each class of deprecation, and correctly prints and
formats them for maximum user efficiency. We also provide the URL to the
data collector for Visibility to ingest.

Signed-off-by: Thom May &lt;thom@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds URLs to each class of deprecation, and correctly prints and
formats them for maximum user efficiency. We also provide the URL to the
data collector for Visibility to ingest.

Signed-off-by: Thom May &lt;thom@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding support for rfc 62 exit code 213</title>
<updated>2016-10-06T22:05:05+00:00</updated>
<author>
<name>Jeremy J. Miller</name>
<email>jm@chef.io</email>
</author>
<published>2016-10-06T21:46:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=1a2f0c6422adc4c304bdd36af9fcdbb43df54e3a'/>
<id>1a2f0c6422adc4c304bdd36af9fcdbb43df54e3a</id>
<content type='text'>
Signed-off-by: Jeremy J. Miller &lt;jm@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Jeremy J. Miller &lt;jm@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into configoption</title>
<updated>2016-08-02T23:36:05+00:00</updated>
<author>
<name>Noah Kantrowitz</name>
<email>noah@coderanger.net</email>
</author>
<published>2016-08-02T23:36:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=0368df838c36fd5a54c75007aae3c2e28cbdba1b'/>
<id>0368df838c36fd5a54c75007aae3c2e28cbdba1b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
