Puppet Class: osx::disable_app_quarantine
- Defined in:
- manifests/disable_app_quarantine.pp
Overview
Public: Disable the App Quarantine feature so you can run apps you download.
2 3 4 5 6 7 8 9 |
# File 'manifests/disable_app_quarantine.pp', line 2
class osx::disable_app_quarantine {
boxen::osx_defaults { 'Disable the downloaded app quarantine':
user => $::boxen_user,
key => 'LSQuarantine',
domain => 'com.apple.LaunchServices',
value => false;
}
}
|