Skip to content
Snippets Groups Projects
Unverified Commit 744e2f55 authored by Benjamin Stigsen's avatar Benjamin Stigsen Committed by GitHub
Browse files

Add Solus OS support

parent d321bf01
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,9 @@ func init() {
} else if pathExists("/etc/ca-certificates/trust-source/anchors/") {
SystemTrustFilename = "/etc/ca-certificates/trust-source/anchors/%s.crt"
SystemTrustCommand = []string{"trust", "extract-compat"}
} else if pathExists("/etc/ssl/certs/") {
SystemTrustFilename = "/etc/ssl/certs/%s.crt"
SystemTrustCommand = []string{"trust", "extract-compat"}
}
if SystemTrustCommand != nil {
_, err := exec.LookPath(SystemTrustCommand[0])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment