allow zero sized cert for bootstrapping
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2022-07-26 11:40:12 +01:00
parent 37cf3b756d
commit 412af92538
Signed by: burble
GPG Key ID: 0FCCD13AE1CF7ED8

View File

@ -85,7 +85,7 @@ func CmdTLSRenew(cmd *cobra.Command, args []string) {
}
// load existing cert if it existed
if _, err := os.Stat(TLSCertPEM); err == nil {
if info, err := os.Stat(TLSCertPEM); err == nil && info.Size() > 0 {
fmt.Printf("Loading existing certificate: %s\n", TLSCertPEM)
data, err := os.ReadFile(TLSCertPEM)