1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

spctl: add page (#7565)

This commit is contained in:
Tim Phan 2021-12-22 11:26:13 +01:00 committed by GitHub
parent 8d8634bb19
commit 753142839f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

21
pages/osx/spctl.md Normal file
View file

@ -0,0 +1,21 @@
# spctl
> Manage the security assessment policy subsystem.
> Utility for managing Gatekeeper in macOS.
> More information: <https://www.unix.com/man-page/osx/8/SPCTL/>.
- Turn off Gatekeeper:
`spctl --master-disable`
- Add a rule to allow an application to run (labeling of rule is optional):
`spctl --add --label "{{rule_name}}" {{path/to/file}}`
- Turn on Gatekeeper:
`spctl --master-enable`
- List all rules on the system:
`spctl --list`