macOS에서 구성 프로파일을 사용한 Dropbox용 환경설정 방법
이 문서의 정보는 Dropbox Standard, Business, Advanced, Business Plus, Enterprise 관리자에게 적용됩니다.
macOS와 Dropbox를 사용하는 대규모 팀과 함께 일하다 보면, 구성 프로파일에 페이로드를 추가해 온라인 전용 파일과 Dropbox 배지 같은 Dropbox 기능이 자동으로 활성화되도록 해야 할 때가 있습니다.
여러 가지 페이로드와 이 페이로드들이 활성화시키는 Dropbox 기능들을 이 글에 하나씩 알아보세요.
macOS 12.3 및 이후 버전에서 온라인 전용 파일을 전적으로 지원하기 위한 페이로드
- 페이로드: 커널 확장 정책 (com.apple.syspolicy.kernel-extension-policy)
- 적용 대상: macOS 10.14와 그 이상
온라인 전용 파일 생성을 위해 Dropbox 동기화 엔진을 활성화시키는 페이로드입니다. 이런 파일은 커널 확장(kext) 구성요소가 있어야 온전하게 작동합니다.
이 구성요소 설치를 간소화하려면, Dropbox 커널 확장이 포함된 macOS 설치 관리자 패키지를 여기에서 배치하세요. 경우에 따라 최종 사용자가 이 구성 요소를 설치하기 위해 장치를 재부팅해야 할 수 있습니다.
macOS Big Sur에서 커널 확장(kexts)을 설치하는 방법을 알아보세요.
<key>AllowedKernelExtensions</key>
<dict>
<key>G7HH3F8CAK</key>
<array>
<string>com.getdropbox.dropbox.kext</string>
</array>
</dict>
<key>AllowedTeamIdentifiers</key>
<array>
<string>G7HH3F8CAK</string>
</array>
Dropbox 배지와 본 사람 정보를 위한 페이로드
- 페이로드: 개인정보 보호 설정 정책 통제 (com.apple.TCC.configuration-profile-policy)
- 적용 대상: macOS 10.14와 그 이상
이 페이로드는 Dropbox 배지 및 본 사람 정보 기능을 활성화합니다.
<key>Services</key>
<dict>
<key>Accessibility</key>
<array>
<dict>
<key>Allowed</key>
<true/>
<key>CodeRequirement</key>
<string>identifier "com.getdropbox.dropbox" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = G7HH3F8CAK</string>
<key>Comment</key>
<string>Allow Dropbox to use the Accessibility API to record the current user's presence or display the Dropbox Badge for the files it manages.</string>
<key>Identifier</key>
<string>com.getdropbox.dropbox</string>
<key>IdentifierType</key>
<string>bundleID</string>
</dict>
</array>
</dict>
삭제된 경고와 오류 메시지를 위한 페이로드
- 페이로드: 개인정보 보호 설정 정책 통제 (com.apple.TCC.configuration-profile-policy)
- 적용 대상: macOS 10.15와 그 이상
Dropbox 경고와 메시지가 의도치 않게 삭제되는 것을 방지하기 위한 페이로드입니다.이 페이로드를 활성화하면 사용자가 다른 사람과 공유한 파일을 삭제하는 등 휴지통 기능과 관련된 파일 작업을 한 경우 Dropbox 데스크톱 앱이 더 정확한 오류나 메시지를 제공합니다.
이 경로는 macOS 10.15와 그 이상의 버전에서 이 기능을 활성화할 수 있는 유일한 접근 경로입니다.
<key>Services</key>
<dict>
<key>SystemPolicyAllFiles</key>
<array>
<dict>
<key>Allowed</key>
<true/>
<key>CodeRequirement</key>
<string>identifier "com.getdropbox.dropbox" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = G7HH3F8CAK</string>
<key>Comment</key>
<string>Allow Dropbox to access the Trash to recover from accidental deletions.</string>
<key>Identifier</key>
<string>com.getdropbox.dropbox</string>
<key>IdentifierType</key>
<string>bundleID</string>
</dict>
</array>
</dict>