From 46cad465bc5886354a42da8b3e493e9eebcf9bbc Mon Sep 17 00:00:00 2001 From: Allen Houchins <32207388+allenhouchins@users.noreply.github.com> Date: Sun, 21 Jun 2026 21:44:29 -0500 Subject: [PATCH] Add hosts to external storage exclusion labels (#47980) Add device IDs to manual labels to exempt specific machines from read-only external/removable storage restrictions. The macs label now includes host "1339" and the windows label includes host "1230", allowing these devices to receive read-write external/removable storage profiles. --- .../macs-excluded-from-external-storage-restrictions.yml | 4 ++-- .../windows-excluded-from-external-storage-restrictions.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/it-and-security/lib/all/labels/macs-excluded-from-external-storage-restrictions.yml b/it-and-security/lib/all/labels/macs-excluded-from-external-storage-restrictions.yml index f38cba8d33..2acfc506af 100644 --- a/it-and-security/lib/all/labels/macs-excluded-from-external-storage-restrictions.yml +++ b/it-and-security/lib/all/labels/macs-excluded-from-external-storage-restrictions.yml @@ -1,5 +1,5 @@ - name: Macs excluded from external storage restrictions description: Macs that should NOT receive the read-only external storage DDM profile. Add a host to this manual label to allow read-write external storage on that Mac. label_membership_type: manual - platform: darwin - hosts: [] + hosts: + - "1339" #47980 diff --git a/it-and-security/lib/all/labels/windows-excluded-from-external-storage-restrictions.yml b/it-and-security/lib/all/labels/windows-excluded-from-external-storage-restrictions.yml index fc56fe01e7..a0a26a2a74 100644 --- a/it-and-security/lib/all/labels/windows-excluded-from-external-storage-restrictions.yml +++ b/it-and-security/lib/all/labels/windows-excluded-from-external-storage-restrictions.yml @@ -1,5 +1,5 @@ - name: Windows hosts excluded from external storage restrictions description: Windows hosts that should NOT receive the read-only removable storage profile. Add a host to this manual label to allow read-write removable storage on that device. label_membership_type: manual - platform: windows - hosts: [] + hosts: + - "1230" #47980