mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-21 11:04:26 +00:00
41 lines
737 B
Markdown
41 lines
737 B
Markdown
# `openssl-osx-ca`
|
|
|
|
## Table of contents <!-- omit in toc -->
|
|
|
|
1. [TL;DR](#tldr)
|
|
1. [Further readings](#further-readings)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# Install and configure.
|
|
brew tap 'homebrew/services'
|
|
brew tap 'raggi/ale'
|
|
brew install 'openssl-osx-ca'
|
|
brew services start 'openssl-osx-ca'
|
|
|
|
# Run manually.
|
|
openssl-osx-ca
|
|
|
|
# Check the last time the certificates file changed.
|
|
stat "$(brew --prefix)/etc/openssl@"*"/cert.pem"
|
|
find "$(brew --prefix)/etc" -type 'f' -name 'cert.pem' -path '*/openssl*' -exec stat {} +
|
|
```
|
|
|
|
## Further readings
|
|
|
|
- [Github]
|
|
- [Homebrew]
|
|
- [Mac OS X]
|
|
|
|
<!--
|
|
References
|
|
-->
|
|
|
|
<!-- Upstream -->
|
|
[github]: https://github.com/raggi/openssl-osx-ca
|
|
|
|
<!-- Knowledge base -->
|
|
[homebrew]: ../homebrew.md
|
|
[mac os x]: README.md
|