allow zero sized cert for bootstrapping
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
37cf3b756d
commit
412af92538
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user