1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- // Copyright 2018 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package main
- import (
- "bytes"
- "io/ioutil"
- "log"
- "os"
- "os/exec"
- "path/filepath"
- "strings"
- )
- var (
- FirefoxProfile = os.Getenv("HOME") + "/.mozilla/firefox/*"
- CertutilInstallHelp = `apt install libnss3-tools" or "yum install nss-tools`
- NSSBrowsers = "Firefox and/or Chrome/Chromium"
- SystemTrustFilename string
- SystemTrustCommand []string
- )
- func init() {
- _, err := os.Stat("/etc/pki/ca-trust/source/anchors/")
- if !os.IsNotExist(err) {
- SystemTrustFilename = "/etc/pki/ca-trust/source/anchors/mkcert-rootCA.pem"
- SystemTrustCommand = []string{"update-ca-trust", "extract"}
- } else {
- _, err = os.Stat("/usr/local/share/ca-certificates/")
- if !os.IsNotExist(err) {
- SystemTrustFilename = "/usr/local/share/ca-certificates/mkcert-rootCA.crt"
- SystemTrustCommand = []string{"update-ca-certificates"}
- }
- }
- if SystemTrustCommand != nil {
- _, err := exec.LookPath(SystemTrustCommand[0])
- if err != nil {
- SystemTrustCommand = nil
- }
- }
- }
- func (m *mkcert) installPlatform() bool {
- if SystemTrustCommand == nil {
- log.Printf("Installing to the system store is not yet supported on this Linux 😣 but %s will still work.", NSSBrowsers)
- log.Printf("You can also manually install the root certificate at %q.", filepath.Join(m.CAROOT, rootName))
- return false
- }
- cert, err := ioutil.ReadFile(filepath.Join(m.CAROOT, rootName))
- fatalIfErr(err, "failed to read root certificate")
- cmd := CommandWithSudo("tee", SystemTrustFilename)
- cmd.Stdin = bytes.NewReader(cert)
- out, err := cmd.CombinedOutput()
- fatalIfCmdErr(err, "tee", out)
- cmd = CommandWithSudo(SystemTrustCommand...)
- out, err = cmd.CombinedOutput()
- fatalIfCmdErr(err, strings.Join(SystemTrustCommand, " "), out)
- return true
- }
- func (m *mkcert) uninstallPlatform() bool {
- if SystemTrustCommand == nil {
- return false
- }
- cmd := CommandWithSudo("rm", SystemTrustFilename)
- out, err := cmd.CombinedOutput()
- fatalIfCmdErr(err, "rm", out)
- cmd = CommandWithSudo(SystemTrustCommand...)
- out, err = cmd.CombinedOutput()
- fatalIfCmdErr(err, strings.Join(SystemTrustCommand, " "), out)
- return true
- }
- func CommandWithSudo(cmd ...string) *exec.Cmd {
- if _, err := exec.LookPath("sudo"); err != nil {
- return exec.Command(cmd[0], cmd[1:]...)
- }
- return exec.Command("sudo", append([]string{"--"}, cmd...)...)
- }
|