Skip to content
Snippets Groups Projects
Unverified Commit 507e42b8 authored by Max Adamo's avatar Max Adamo
Browse files

add arch linux support

parent b8e8cd7e
No related branches found
No related tags found
No related merge requests found
......@@ -87,6 +87,12 @@ func main() {
CertBase = "/etc/ssl/certs"
KeyBase = "/etc/ssl/private"
GroupName = "ssl-cert"
} else if OSRelease == "arch" {
CertBase = "/etc/ssl/certs"
KeyBase = "/etc/ssl/private"
GroupName = "root"
} else {
log.Fatalf("don't know what to do with OS: %v", OSRelease)
}
usage := fmt.Sprintf(`ACME Downloader:
......
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