summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* rvm needs GEM_PATH protectedlcg/integ-fixesLamont Granquist2015-05-181-1/+1
| | | | | otherwise the rubyopts passes -rbundler/setup which whacks the gem_path and then without the env var it can't find internal gems like i18n.
* just check for exit != 0Lamont Granquist2015-05-181-1/+1
|
* fix circular references testsLamont Granquist2015-05-181-14/+8
|
* Update CHANGELOG.mdThom May2015-05-181-0/+1
|
* Merge pull request #3381 from chef/lcg/warn-cb-self-depThom May2015-05-185-4/+55
|\ | | | | warn on cookbook self-deps
| * suppress cookbook self-dependencies and warnlcg/warn-cb-self-depLamont Granquist2015-05-153-3/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cookbooks with self-deps: name 'foo' depends 'foo' are useless and can waste cycles in the depsolver (particularly in the non-solution case), and likely limit the possible choices of depsolvers that we could pick at some point to replace gecode. filtering out the self-dep here will prevent the chef server depsolver from seeing the self-dep and needing to do the work to strip it. also warn the user so that they can remove the self-dep. in the future this will be a hard error. foodcritic also has a rule about removing these.
| * change default log_location + log_level for knifeLamont Granquist2015-05-152-1/+15
| | | | | | | | | | | | | | | | | | send logging to STDERR and drop default log_level to :warn so that we can see warnings again. logging needs to go to STDERR so that we don't break someone's 'API' where they're piping stdin to some filter. we believe the log_level was not warn in order to suppress warns off of 404s which no longer warn by default now.
* | Merge pull request #3380 from chef/jdm/3318Jay Mundrawala2015-05-151-1/+4
|\ \ | | | | | | Jdm/3318
| * | Use multiple attributes in windows_package examplejdm/3318Jay Mundrawala2015-05-151-1/+4
| | |
* | | adding ksubrama to the people sectionSteven Murawski2015-05-151-2/+6
| | |
* | | Add ksubrama to chef windows maintainers list.Kartik Null Cating-Subramanian2015-05-151-0/+1
|/ /
* | Add RELEASE_NOTES for #3318Jay Mundrawala2015-05-151-0/+36
| |
* | Update CHANGELOG for #3318Jay Mundrawala2015-05-151-0/+1
| |
* | Merge pull request #3318 from chef/jdm/msi-uri-sourceJay Mundrawala2015-05-156-35/+312
|\ \ | | | | | | Modify windows package provider to allow url
| * | Use canonical_path in windows_package resource for sourcejdm/msi-uri-sourceJay Mundrawala2015-05-152-3/+3
| | |
| * | added comment for uri_scheme?Jay Mundrawala2015-05-151-0/+3
| | |
| * | download_file_missing? -> downloadable_file_missing?Jay Mundrawala2015-05-152-4/+4
| | |
| * | Surface checksum attributeJay Mundrawala2015-05-153-0/+29
| | |
| * | Allow users to override remote_file attributes in windows_packageJay Mundrawala2015-05-153-10/+39
| | |
| * | Use custom uri matcherJay Mundrawala2015-05-152-5/+47
| | | | | | | | | | | | URI.split matches C:/, which we do not want
| * | Refactor uri detectionJay Mundrawala2015-05-154-32/+45
| | |
| * | Added specs to for windows_package provider's uri featureJay Mundrawala2015-05-151-24/+90
| | |
| * | Added spec to make sure urls are not modified when creating a ↵Jay Mundrawala2015-05-151-0/+9
| | | | | | | | | | | | windows_package resource
| * | Modify windows package provider to allow urlJay Mundrawala2015-05-153-11/+97
| |/
* | Update CHANGELOG for #3344Jay Mundrawala2015-05-151-0/+1
| |
* | Merge pull request #3344 from chef/jdm/netuserJay Mundrawala2015-05-159-122/+592
|\ \ | | | | | | Changing Net User things to use ffi instead of win32-api
| * | Added comment to LMSTRJay Mundrawala2015-05-151-1/+1
| | |
| * | remove unused param_err in net_user_set_info_l3Jay Mundrawala2015-05-151-2/+1
| | |
| * | remove unused param_err in net_user_add_l3Jay Mundrawala2015-05-151-2/+1
| | |
| * | Added functional tests for user resource on windowsJay Mundrawala2015-05-151-0/+125
| | |
| * | wstring the thingsJay Mundrawala2015-05-151-7/+4
| | |
| * | LogonUser uses ffi instead win32-apiJay Mundrawala2015-05-155-17/+76
| | |
| * | Move win32/user to win32/netJay Mundrawala2015-05-152-1/+1
| | |
| * | Removed unused thingsJay Mundrawala2015-05-151-85/+9
| | |
| * | NetUserDel uses ffi instead in win32-apiJay Mundrawala2015-05-153-3/+24
| | |
| * | Empty strings should be able to be converted into wide stringsJay Mundrawala2015-05-151-1/+1
| | |
| * | NetUserSetInfo uses ffiJay Mundrawala2015-05-153-9/+45
| | |
| * | NetUserGetInfo uses ffiJay Mundrawala2015-05-153-19/+106
| | |
| * | Replace some user creation win32-api calls with ffiJay Mundrawala2015-05-154-14/+237
| | |
| * | Change handle to size_tJay Mundrawala2015-05-151-1/+1
| |/
* | Update CHANGELOG for #3360Jay Mundrawala2015-05-151-0/+1
| |
* | Merge pull request #3360 from chef/jdm/resource-semanticsJay Mundrawala2015-05-154-0/+37
|\ \ | |/ |/| Add check_resource_semantics! lifecycle method to provider
| * Added spec for making sure package fails if both multipackage and source ↵jdm/resource-semanticsJay Mundrawala2015-05-131-0/+6
| | | | | | | | specified
| * Added spec for check_resource_semantics! inJay Mundrawala2015-05-131-0/+20
| |
| * Fail if both source and multipackage are provided for packageJay Mundrawala2015-05-111-0/+6
| | | | | | | | See issue #3075
| * Add check_resource_semantics! lifecycle method to providerJay Mundrawala2015-05-111-0/+5
| |
* | Deprecate Chef::Resource::FooBar -> "foo_bar" DSL convention;John Keiser2015-05-1376-303/+1165
|\ \ | | | | | | | | | use methods to handle DSL rather than method_missing
| * | Add Chef::ResourceResolver.resolvejk/missing_method_missingJohn Keiser2015-05-134-1/+16
| | |
| * | Clarify doc changes per @lamont-granquist's suggestionsJohn Keiser2015-05-132-10/+4
| | |
| * | Remove unused clear methodJohn Keiser2015-05-131-6/+0
| | |