1
0
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:
moelsayed
2018-01-20 03:18:30 +02:00
parent 0f3390f48f
commit e3302f3009

View File

@@ -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