summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix log message that shows useless port rangezerologJohn Keiser2014-07-161-2/+1
|
* Merge pull request #1649 from juliandunn/update-gemspec-urlSerdar Sutay2014-07-161-2/+2
|\ | | | | Update gemspec URL and domain name
| * Update gemspec URL and domain nameJulian C. Dunn2014-07-161-2/+2
|/
* Merge pull request #1644 from opscode/schisamo/lock-down-rest-clientSeth Chisamore2014-07-151-1/+4
|\ | | | | Lock down rest-client to <= 1.6.7
| * Lock down rest-client to <= 1.6.7Seth Chisamore2014-07-151-1/+4
|/ | | | | | | | The 1.6.8 release of rest-client introduced rdoc as a new runtime dependency. rdoc has ships with fixture data which contains spaces in the filenames which in turn breaks Omnibus builds on Solaris. Full details can be found on the original issue: https://github.com/opscode/chef/pull/1211
* Merge pull request #1637 from samdunne/patch-1Serdar Sutay2014-07-151-1/+1
|\ | | | | Correct link to ticket/issue tracker
| * Correct link to ticket/issue trackerSam Dunne2014-07-141-1/+1
| |
* | Merge pull request #1639 from opscode/sersut/chef-cvt-fixSerdar Sutay2014-07-158-28/+183
|\ \ | | | | | | Chef CVT Fixes for Azure
| * | Turn the not applicable 0.0.0.0 address spec on windows.sersut2014-07-141-1/+2
| | |
| * | Make the windows memory leak test more robust.sersut2014-07-142-8/+2
| | |
| * | Handle unexpected default non-inheritable ACLs on non-vanilla windows boxes.sersut2014-07-142-13/+22
| | |
| * | Automatically find out the sid for Administrators so that the specs can run ↵sersut2014-07-144-6/+157
| |/ | | | | | | on boxes for which the administrators account is renamed.
* | Merge branch 'CHEF-3960' PR #1546jmink2014-07-153-3/+32
|\ \ | |/ |/|
| * Limit change to windows and fix test to be accurate.jmink2014-07-152-5/+7
| |
| * Clarify symlink comments in response to code reviewjmink2014-07-151-8/+7
| |
| * Add comments to clarify linking codejmink2014-07-153-4/+17
| |
| * CHEF-3960 Symlinks to directories should be swingablejmink2014-07-152-2/+17
|/
* Merge pull request #1629 from opscode/mcquin/shell_out_spec_fixSerdar Sutay2014-07-112-1/+18
|\ | | | | Update expected result when LC_ALL is not set in Windows.
| * Add RSpec matcher match_environment_variable.Claire McQuin2014-07-102-9/+18
| |
| * Update expected result when LC_ALL is not set in Windows.Claire McQuin2014-07-091-1/+9
| |
* | Use defined? to check for instance variablesSeth Vargo2014-07-111-2/+2
| |
* | Delegate DSL method values to their superclassSeth Vargo2014-07-112-7/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When inheriting from +Resource::LWRPBase+, the +default_action+ and +actions+ attributes are set as class instance variables. In Ruby's object model, class instance variables are **not** shared with children. So subclassing a resource that extended from +Resource::LWRPBase+ would result in some unexplainable side-effects: class Chef::Resource::Parent < Chef::Resource::LWRPBase actions :execute default_action :execute end class Child::Resource::Child < Chef::Resource::Parent # In here, +actions+ and +default_action+ are **not** inherited so they # are +nil+! end This commit tells resources that inherit from LWRPBase to check their superclasses for values if they do not have one on their own. This commit also deprecate +valid_actions+ in favor of just using +actions+ in the LWRP DSL.
* | Use Ruby 1.8 style hashes for BCSeth Vargo2014-07-111-2/+2
| |
* | Allow default values to be a DelayedEvaluatorSeth Vargo2014-07-113-0/+31
|/
* Merge pull request #1581 from opscode/vtolstov-systemdClaire McQuin2014-07-093-41/+63
|\ | | | | vtolstov: reload service only if it running, if not - start
| * Update contribution information for https://github.com/opscode/chef/pull/1532vtolstov-systemdClaire McQuin2014-06-301-0/+3
| |
| * Update spec for shell_out.Claire McQuin2014-06-301-27/+44
| |
| * Check shell_out's error? when running status command.Claire McQuin2014-06-301-5/+3
| |
| * Make Systemd service use shell_out.Claire McQuin2014-06-301-11/+11
| |
| * check for running service when reload, if not - start itVasiliy Tolstov2014-06-301-1/+5
| | | | | | | | Signed-off-by: Vasiliy Tolstov <v.tolstov@selfip.ru>
| * reload service only if it running, if not - startVasiliy Tolstov2014-06-301-1/+1
| | | | | | | | Signed-off-by: Vasiliy Tolstov <v.tolstov@selfip.ru>
* | Merge pull request #1624 from opscode/mcquin/basic_client_proxyClaire McQuin2014-07-092-2/+42
|\ \ | | | | | | Add url scheme to proxy, if not present.
| * | Add url scheme to proxy, if not present.Claire McQuin2014-07-092-2/+42
|/ /
* | Support port ranges for chef-zero in local modeJohn Keiser2014-07-0714-66/+195
|\ \
| * | Refactor caller decorations into with_server_connectivityJohn Keiser2014-07-073-9/+30
| | |
| * | Move local-mode server connectivity code to Chef::LocalModeJohn Keiser2014-07-074-76/+101
| | |
| * | Add chef-zero-port to doc/release notesJohn Keiser2014-07-072-0/+11
| | |
| * | Allow Pedant to run if port 8889 is blockedJohn Keiser2014-07-072-2/+4
| | |
| * | Support --chef-zero-port=A-B,C,D-E syntax for finding portsJohn Keiser2014-07-077-8/+78
|/ /
* | Merge pull request #1606 from opscode/btm/developer-office-hoursBryan McLellan2014-07-031-4/+4
|\ \ | | | | | | office hours -> developer office hours
| * | office hours -> developer office hoursBryan McLellan2014-07-031-4/+4
|/ /
* | Merge pull request #1598 from opscode/sersut/chef-1580Serdar Sutay2014-07-027-46/+51
|\ \ | | | | | | Revert the provider indirection logic in Chef::Provider::Package::Apt.
| * | Revert the provider indirection logic while keeping the timeout ↵sersut2014-07-027-46/+51
| | | | | | | | | | | | functionality to fix resource notifications and ChefSpec stubs.
* | | update knife man pages; add knife servejamescott2014-07-0231-288/+510
| | |
* | | update chef-solo man pagejamescott2014-07-021-14/+13
| | |
* | | update chef-client man pagejamescott2014-07-021-10/+13
| | |
* | | update chef-shell man pagejamescott2014-07-021-4/+4
| | |
* | | update html man page help; add knife servejamescott2014-07-0248-197/+322
|/ /
* | Merge pull request #1589 from opscode/lcg/lolinheritanceSerdar Sutay2014-07-022-64/+59
|\ \ | | | | | | remove inheritance from apt_package
| * | moar 1.8.7 fixesLamont Granquist2014-07-011-4/+4
| | |