mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
get-certs now generates a .pem file in addition to .key and .crt (#750)
This commit is contained in:
@ -70,6 +70,7 @@ func (d directoryStorage) StoreCertificate(name string, cert *certificate.Resour
|
||||
cert.Certificate = nil
|
||||
priv := cert.PrivateKey
|
||||
cert.PrivateKey = nil
|
||||
combined := []byte(string(pub) + "\n" + string(priv))
|
||||
jDAt, err := json.MarshalIndent(cert, "", " ")
|
||||
if err != nil {
|
||||
return err
|
||||
@ -80,6 +81,9 @@ func (d directoryStorage) StoreCertificate(name string, cert *certificate.Resour
|
||||
if err = ioutil.WriteFile(d.certFile(name, "crt"), pub, perms); err != nil {
|
||||
return err
|
||||
}
|
||||
if err = ioutil.WriteFile(d.certFile(name, "pem"), combined, perms); err != nil {
|
||||
return err
|
||||
}
|
||||
return ioutil.WriteFile(d.certFile(name, "key"), priv, perms)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user