-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update guide to puppet module #23369
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5736,7 +5736,7 @@ Get aggregate status counts of profiles for to macOS and Windows hosts that are | |
- [Delete a bootstrap package](#delete-a-bootstrap-package) | ||
- [Download a bootstrap package](#download-a-bootstrap-package) | ||
- [Get a summary of bootstrap package status](#get-a-summary-of-bootstrap-package-status) | ||
- [Turn on end user authentication for macOS setup](#turn-on-end-user-authentication-for-macos-setup) | ||
- [Configure setup experience](#configure-setup-experience) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I updated the sub-nav to reflect your heading change. |
||
- [Upload an EULA file](#upload-an-eula-file) | ||
- [Get metadata about an EULA file](#get-metadata-about-an-eula-file) | ||
- [Delete an EULA file](#delete-an-eula-file) | ||
|
@@ -6105,7 +6105,7 @@ The summary can optionally be filtered by team ID. | |
} | ||
``` | ||
|
||
### Turn on end user authentication for macOS setup | ||
### Configure setup experience | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The scope of this endpoint changed in 4.48 to encompass more than just end user authentication so the old heading is not accurate. I took a stab at updating it here, but it would be good for someone from product to weigh in and also to confirm that changing this here won't break other documentation links elsewhere. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we're good. It doesn't look as though |
||
|
||
_Available in Fleet Premium_ | ||
|
||
|
@@ -6128,7 +6128,8 @@ _Available in Fleet Premium_ | |
```json | ||
{ | ||
"team_id": 1, | ||
"enabled_end_user_authentication": true | ||
"enable_end_user_authentication": true, | ||
"enable_release_device_manually": true | ||
} | ||
``` | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
await_device_configured
setting in Setup Assistant was effectively overruled by Fleet with the addition ofenable_release_device_manually
in 4.58, but it seems the docs weren't updated. I took my best shot, but I wasn't closely involved in the development so it would be good for someone from product to weigh in here.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^^ @noahtalerman @marko-lisica
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. This is how the new behavior looks like. Fleet adds
await_device_configured
by default and won't let the user to change that.