-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated policies and software installs (#25677)
- Fixed patch logic and updated version strings in Firefox and Slack policies: fleetdm/confidential#9389 - Implemented custom target scoping for Linux software: fleetdm/confidential#9348 - Updated and consolidated macOS latest operating system check policy - Copied policies from "💻🐣 Workstations (canary)" to "💻 Workstations" team
- Loading branch information
1 parent
a7acff4
commit af5d102
Showing
11 changed files
with
35 additions
and
47 deletions.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
url: https://downloads.slack-edge.com/desktop-releases/linux/x64/4.41.105/slack-desktop-4.41.105-amd64.deb | ||
self-service: true | ||
pre_install_query: | ||
path: ../queries/all-deb-hosts.yml | ||
labels_include_any: | ||
- "Debian-based Linux hosts" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
url: https://downloads.slack-edge.com/desktop-releases/linux/x64/4.41.105/slack-4.41.105-0.1.el8.x86_64.rpm | ||
self-service: true | ||
pre_install_query: | ||
path: ../queries/all-rpm-hosts.yml | ||
labels_include_any: | ||
- "RPM-based Linux hosts" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
url: https://zoom.us/client/6.2.11.5069/zoom_amd64.deb | ||
self-service: true | ||
pre_install_query: | ||
path: ../queries/all-deb-hosts.yml | ||
labels_include_any: | ||
- "Debian-based Linux hosts" |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
url: https://zoom.us/client/6.3.0.5527/zoom_x86_64.rpm | ||
self-service: true | ||
pre_install_query: | ||
path: ../queries/all-rpm-hosts.yml | ||
labels_include_any: | ||
- "RPM-based Linux hosts" |
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,8 @@ | ||
- name: macOS - Operating system up to date | ||
query: SELECT 1 FROM os_version WHERE version >= '15.2'; | ||
critical: true | ||
description: Using an outdated macOS version risks exposure to security vulnerabilities and potential system instability. | ||
resolution: Please find time to run Software Update. > System Settings > Software Update | ||
platform: darwin | ||
calendar_events_enabled: false | ||
|
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,6 @@ | ||
- name: macOS - Update Firefox | ||
query: SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE name = 'Firefox.app') OR EXISTS (SELECT 1 FROM apps WHERE name = 'Firefox.app' AND version_compare(bundle_short_version, '134.0.2') >= 0); | ||
critical: false | ||
description: The host may have an outdated or non-existent version of Firefox, potentially risking security vulnerabilities or compatibility issues. | ||
resolution: Download the latest version from self-service or check for updates using Firefox's built-in update functionality. | ||
platform: darwin |
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,7 @@ | ||
- name: macOS - Update Slack | ||
query: SELECT 1 WHERE NOT EXISTS (SELECT 1 FROM apps WHERE name = 'Slack.app') OR EXISTS (SELECT 1 FROM apps WHERE name = 'Slack.app' AND version_compare(bundle_short_version, '4.42.116') >= 0); | ||
critical: false | ||
description: The host may be running an outdated version of Slack, which could pose security vulnerabilities or compatibility issues. | ||
resolution: Slack can be updated by downloading the latest version from the App Store or by using Slack's built-in update functionality. | ||
platform: darwin | ||
calendar_events_enabled: false |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
url: https://download-installer.cdn.mozilla.net/pub/firefox/releases/132.0.2/mac/en-US/Firefox%20132.0.2.pkg | ||
url: https://download-installer.cdn.mozilla.net/pub/firefox/releases/134.0.2/mac/en-US/Firefox%20134.0.2.pkg | ||
self_service: true |
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
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