-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add zoom to self-service for Workstations (#20701)
Adds Zoom as a self-service option. While the UI will not allow for similar installers, attempting arm64 vs. Intel using a pre-install query. https://github.com/fleetdm/confidential/issues/6916 --------- Co-authored-by: Victor Lyuboslavsky <victor.lyuboslavsky@gmail.com>
- Loading branch information
1 parent
da3ad28
commit a8bf2d9
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: query | ||
spec: | ||
name: query_apple_silicon | ||
query: SELECT 1 FROM system_info WHERE cpu_type = "arm64e"; | ||
# - name: Determine macOS cpu type as Apple Silicon | ||
# automations_enabled: false | ||
# description: Returns true if macOS cpu type is Apple Silicon. | ||
# discard_data: false | ||
# interval: 3600 | ||
# logging: snapshot | ||
# min_osquery_version: "" | ||
# observer_can_run: true | ||
# platform: "darwin" | ||
# query: SELECT 1 FROM system_info WHERE cpu_type = "arm64e"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: query | ||
spec: | ||
name: query_apple_silicon | ||
query: SELECT 1 FROM system_info WHERE cpu_type = "x86_64h"; | ||
# - name: Determine macOS cpu type as Intel | ||
# automations_enabled: false | ||
# description: Returns true if macOS cpu type is Intel. | ||
# discard_data: false | ||
# interval: 3600 | ||
# logging: snapshot | ||
# min_osquery_version: "" | ||
# observer_can_run: true | ||
# platform: "darwin" | ||
# query: SELECT 1 FROM system_info WHERE cpu_type = "x86_64h"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters