Merge pull request #235 from microsoft/hotfix/unified-mode
v4.1.1 – Use Unified Mode in all resources
This commit is contained in:
Коммит
6941870ea7
|
@ -3,7 +3,9 @@
|
|||
## [4.1.0] - 2020-06-07
|
||||
|
||||
### Added
|
||||
- Added support for [Chef 17](https://docs.chef.io/release_notes_client/#whats-new-in-170). macOS High Sierra test suites will still be utilizing Chef 16.
|
||||
|
||||
- Added support for [Chef 17](https://docs.chef.io/release_notes_client/#whats-new-in-170). macOS High Sierra test suites will still be utilizing Chef 16.
|
||||
- Added `unified_mode true` to all resources. See [Unified Mode in Custom Resources][unified-mode-in-custom-resources] for more information.
|
||||
|
||||
## [4.0.0] - 2020-02-25
|
||||
|
||||
|
@ -434,3 +436,5 @@ Thanks to @jkronborg for these two fixes!
|
|||
- Added `spotlight` resource.
|
||||
- Added `machine_name` resource.
|
||||
- Added `macos_user` resource.
|
||||
|
||||
[unified-mode-in-custom-resources]: https://docs.chef.io/release_notes_client/#unified-mode-in-custom-resources
|
||||
|
|
|
@ -4,7 +4,7 @@ maintainer_email 'chef@microsoft.com'
|
|||
license 'MIT'
|
||||
description 'Resources for configuring and provisioning macOS'
|
||||
chef_version '>= 14.0'
|
||||
version '4.1.0'
|
||||
version '4.1.1'
|
||||
|
||||
source_url 'https://github.com/Microsoft/macos-cookbook'
|
||||
issues_url 'https://github.com/Microsoft/macos-cookbook/issues'
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :automatic_software_updates
|
||||
|
||||
property :check, [true, false]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :certificate
|
||||
|
||||
property :certfile, String
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :command_line_tools
|
||||
|
||||
property :compile_time, [true, false],
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :defaults
|
||||
|
||||
property :domain, String, name_property: true
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :keychain
|
||||
default_action :create
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :macos_user
|
||||
default_action :create
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :plist
|
||||
|
||||
property :path, String, name_property: true
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :pmset
|
||||
default_action :run
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :remote_management
|
||||
default_action :enable
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :spotlight
|
||||
default_action :set
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :system_preference
|
||||
|
||||
property :preference, Symbol, required: true, desired_state: false
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
unified_mode true
|
||||
|
||||
provides :xcode
|
||||
default_action %i(install_gem install_xcode install_simulators)
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче