This commit is contained in:
Jacob Zaval 2022-03-04 19:49:57 -08:00
Родитель 3841a0a5b4
Коммит 2aa0c1f17a
2 изменённых файлов: 11 добавлений и 13 удалений

Просмотреть файл

@ -12,6 +12,17 @@
- Secure token support for `macos_user` resource via new properties `secure_token` and `existing_token_auth`. - Secure token support for `macos_user` resource via new properties `secure_token` and `existing_token_auth`.
- New unit and integration tests for `macos_user` resource. - New unit and integration tests for `macos_user` resource.
## Changed
- Unified `macos_user` test suites
- Updated `macos_user` resource to use not utilize default attributes for authorization.
## Removed
- Removed last default cookbook attributes:
- `node['macos']['admin_user']`
- `node['macos']['admin_password']`
## [4.2.3] - 2022-02-03 ## [4.2.3] - 2022-02-03
### Fixed ### Fixed

Просмотреть файл

@ -23,19 +23,6 @@ Chef resources and recipes for managing and provisioning macOS.
- macOS Catalina 10.15 - macOS Catalina 10.15
- macOS Big Sur 11.0 - macOS Big Sur 11.0
## Attributes
### Admin User and Password
```ruby
node['macos']['admin_user'] = 'vagrant'
node['macos']['admin_password'] = 'vagrant'
```
Each of these attributes defaults to vagrant since our resources are developed
with the Vagrant paradigm. In other words, the user and password declared here
should be an admin user with passwordless super-user rights.
## Resources ## Resources
- [`automatic_software_updates`](https://github.com/Microsoft/macos-cookbook/blob/master/documentation/resource_automatic_software_updates.md) - [`automatic_software_updates`](https://github.com/Microsoft/macos-cookbook/blob/master/documentation/resource_automatic_software_updates.md)