mirror of
https://github.com/rancher/rke.git
synced 2025-09-01 06:56:29 +00:00
Fix backup cert issue on docker version > 17.06
This commit is contained in:
@@ -176,7 +176,8 @@ func FetchCertificatesFromHost(ctx context.Context, host *hosts.Host, image, loc
|
||||
certificate := CertificatePKI{}
|
||||
crt, err := fetchFileFromHost(ctx, getTempPath(certEnv[0]), image, host)
|
||||
if err != nil {
|
||||
if strings.Contains(err.Error(), "no such file or directory") {
|
||||
if strings.Contains(err.Error(), "no such file or directory") ||
|
||||
strings.Contains(err.Error(), "Could not find the file") {
|
||||
return nil, nil
|
||||
}
|
||||
return nil, err
|
||||
|
Reference in New Issue
Block a user