File: truststore_other.go

package info (click to toggle)
golang-github-bep-mclib 1.20400.20402-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 164 kB
  • sloc: makefile: 4
file content (24 lines) | stat: -rw-r--r-- 501 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//go:build dragonfly || freebsd || openbsd || netbsd || solaris

package internal

import (
	"fmt"
	"runtime"
)

var (
	FirefoxProfiles     = []string{}
	CertutilInstallHelp = ""
	NSSBrowsers         = ""
)

func (m *mkcert) installPlatform() bool {
	panic(fmt.Sprintf("installing root on %s is currently not supported", runtime.GOOS))
	return false
}

func (m *mkcert) uninstallPlatform() bool {
	panic(fmt.Sprintf("uninstalling root on %s is currently not supported", runtime.GOOS))
	return false
}