Skip to content

Commit

Permalink
Update configuration to use the new file.
Browse files Browse the repository at this point in the history
  • Loading branch information
mskanth972 committed Mar 22, 2024
1 parent bdb6b56 commit 686a63e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/driver/efs_watch_dog.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,11 @@ func copyWithoutOverwriting(srcDir, dstDir string) error {
if err := copyFile(src, dst); err != nil {
return err
}
} else if filepath.Base(src) == "efs-utils.crt" {
klog.Infof("Copying %s ", dst)
if err := copyFile(src, dst); err != nil {
return err
}
} else {
klog.Infof("Skip copying %s since it exists already", dst)
}
Expand Down

0 comments on commit 686a63e

Please sign in to comment.