summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4005 from chef/salam/template-fixSalim Alam2015-10-012-13/+13
|\ | | | | Use Chef::FileContentManagement::Tempfile to create temp file
| * Clean up tests, fix bug in tempfile_openSalim Alam2015-09-301-1/+1
| |
| * Use accessor instead of class variable (cleanup)Salim Alam2015-09-301-12/+12
| |
| * Use Chef::FileContentManagement::Tempfile to create temp fileSalim Alam2015-09-291-1/+1
| |
* | Un-remove ExpandNodeObject#load_node, deprecate itpolicybuilder-load-node-unremovedanielsdeleo2015-10-011-0/+30
| | | | | | | | Some third-party tools are using this, we need it to work.
* | Bump revision to 12.5.0jk/12.5.0-updateJohn Keiser2015-09-301-1/+1
| |
* | Add ability for default to override name_propertyjk/name-defaultJohn Keiser2015-09-291-4/+7
| |
* | This wasn't intended to be a protected method.Noah Kantrowitz2015-09-291-3/+3
| | | | | | /cc @jkeiser
* | Add tests for things that have created the lockfile but not yet acquired the ↵John Keiser2015-09-291-21/+30
| | | | | | | | lock
* | Make sure name_attribute works on derived propertiesjk/name-attribute-dupJohn Keiser2015-09-291-1/+7
| |
* | Merge pull request #3978 from tas50/knife-wording-2Thom May2015-09-297-13/+13
|\ \ | | | | | | Community site -> Supermarket in knife
| * | Update more references from cookbooks -> supermarketTim Smith2015-09-271-1/+1
| | |
| * | Capitalize another messageTim Smith2015-09-271-1/+1
| | |
| * | Supermarket vs. the SupermarketTim Smith2015-09-272-3/+3
| | | | | | | | | | | | Judging by our docs is seems we're just calling it Supermarket not the Supermarket or the Supermarket site. Lets be consistent here
| * | More Community site -> SupermarketTim Smith2015-09-271-4/+4
| | |
| * | Fix tenseTim Smith2015-09-271-1/+1
| | |
| * | Capitalize first word in sentencesTim Smith2015-09-272-3/+3
| | |
| * | Fix error message to mention Supermarket not community siteTim Smith2015-09-271-2/+2
| | | | | | | | | | | | Also Supermarket doesn't have a capital M
| * | Copyright doesn't need to be capitalizedTim Smith2015-09-271-1/+1
| |/
* | Merge pull request #3989 from chef/jk/api-private-resource-collectionThom May2015-09-291-5/+3
|\ \ | | | | | | Make resource_collection= @api private instead of deprecated
| * | Make resource_collection= @api private instead of deprecatedjk/api-private-resource-collectionJohn Keiser2015-09-281-5/+3
| | |
* | | fix omnitruck urlThom May2015-09-291-1/+1
| | |
* | | Merge pull request #3976 from tas50/bootstrapLamont Granquist2015-09-291-4/+3
|\ \ \ | | | | | | | | Bootstrap doc doesnt match reality
| * | | Bootstrap doc doesnt match realityTim Smith2015-09-261-4/+3
| | |/ | |/| | | | | | | The other scripts are gone. Also update the URLs
* | | Use much simpler regex for determining the rpm versionIrving Popovetsky2015-09-291-2/+2
| |/ |/|
* | Make service_providers return the providersJohn Keiser2015-09-281-6/+10
| |
* | Get rid of state-keeping and reset in ServiceHelpersjk/systemctl-shenanigansJohn Keiser2015-09-281-31/+19
| |
* | Add test for nonzero systemctl exit codeJohn Keiser2015-09-283-12/+18
| |
* | Add system providers to the list of world-stubbed stuffJohn Keiser2015-09-281-0/+5
| |
* | return empty array if no services foundRanjib Dey2015-09-281-1/+1
| |
* | Updating to use count instead of split to sort files in remote_directoryandy-dufour2015-09-281-1/+1
| |
* | Fix for #3942 - change remote_directory resource file discovery to traverse ↵andy-dufour2015-09-281-1/+1
|/ | | | breadth first
* Merge pull request #3971 from coderanger/fix-deprecationsNoah Kantrowitz2015-09-251-1/+1
|\ | | | | I think this was a bad search-and-replace, causes an infinite loop.
| * I think this was a bad search-and-replace, causes an infinite loop.Noah Kantrowitz2015-09-251-1/+1
| |
* | Use 2.0-compatible Hash rather than to_hJohn Keiser2015-09-251-1/+1
|/
* If both name_attribute and name_property are specified, raise an error.jk/property-default-nilJohn Keiser2015-09-251-19/+20
|
* Don't treat name_property/attribute as defaults if they are falseJohn Keiser2015-09-251-1/+5
|
* Fix up property deprecation textJohn Keiser2015-09-251-1/+1
|
* Find the spot the user called and use that as the deprecation locationJohn Keiser2015-09-256-9/+19
|
* Prefer name_property: true over default: nilJohn Keiser2015-09-251-11/+12
|
* Remove experimental feature warning for policyfilesremove-policyfile-warningdanielsdeleo2015-09-241-6/+4
| | | | Also, improve the language around unsupported features/options.
* Add policyfile attributes to client builderpolicyfile-bootstrap-integrationdanielsdeleo2015-09-241-0/+12
|
* Don't pass -E to chef-client unless given an environmentdanielsdeleo2015-09-241-2/+2
| | | | | | | | | | | | | | | | | | | Chef::PolicyBuilder::Policyfile requires `Chef::Config[:environment]` to be nil or empty, in order to prevent confusion that could arise from using two conflicting features. Because `chef-client` merges CLI options to `Chef::Config` automatically, running `chef-cient -E _default` causes `Chef::Config[:environment]` to be non-nil, resulting in chef-client emitting this error when bootstrapping: ``` 192.168.99.143 Unexpected Error: 192.168.99.143 ----------------- 192.168.99.143 Chef::PolicyBuilder::Policyfile::UnsupportedFeature: Policyfile does not work with Chef Environments ``` For non-policyfile users, this should behave the same as before since Chef will just default to the `_default` environment (this gets set via Node#initialize) if none is specified.
* Add --policy-name and --policy-group opts to knife bootstrapdanielsdeleo2015-09-241-0/+35
|
* Add policyfile support to bootstrap contextdanielsdeleo2015-09-241-1/+6
|
* Re-upgrade chef-zero to latestjk/latest-chef-zeroJohn Keiser2015-09-233-4/+7
|
* Add deprecation warning for properties that specify default and name_propertyjk/default-ignoringJohn Keiser2015-09-222-7/+11
|
* Honor the ordering of whichever `name_attribute` or `default` comes firstJohn Keiser2015-09-221-0/+15
|
* Merge pull request #3939 from chef/salam/lazy-msiSalim Alam2015-09-222-2/+18
|\ | | | | Lazy load MSI provider, add check for MSI support
| * Lazy load MSI provider, add check for MSI supportsalam/lazy-msiSalim Alam2015-09-222-2/+18
| |