Skip to content

Commit 86db122

Browse files
authored
Merge pull request #12 from slegrand45/freebsd-compatibility
Dummy file to be able to build on FreeBSD
2 parents 2fff27b + 40d7f47 commit 86db122

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

truststore_freebsd.go

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2018 The Go Authors. All rights reserved.
2+
// Use of this source code is governed by a BSD-style
3+
// license that can be found in the LICENSE file.
4+
5+
package cert
6+
7+
import (
8+
"os"
9+
)
10+
11+
var (
12+
FirefoxProfiles = []string{os.Getenv("HOME") + "/.mozilla/firefox/*",
13+
os.Getenv("HOME") + "/.mozilla/firefox-trunk/*"}
14+
NSSBrowsers = "Firefox and/or Chrome/Chromium"
15+
16+
CertutilInstallHelp string
17+
)
18+
19+
func (ca *CA) installPlatform() error {
20+
return nil
21+
}
22+
23+
func (ca *CA) uninstallPlatform() error {
24+
return nil
25+
}

0 commit comments

Comments
 (0)