mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-28 03:42:09 +00:00
agent: cdh: Remove unnecessary borrows
Fix clippy error: ``` error: the borrowed expression implements the required traits ``` Signed-off-by: stevenhorsman <steven@uk.ibm.com>
This commit is contained in:
parent
a131eec5c1
commit
a640bb86ec
@ -147,7 +147,7 @@ pub async fn unseal_file(path: &str) -> Result<()> {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let target_path = fs::canonicalize(&entry.path())?;
|
let target_path = fs::canonicalize(entry.path())?;
|
||||||
info!(sl(), "sealed source entry target path: {:?}", target_path);
|
info!(sl(), "sealed source entry target path: {:?}", target_path);
|
||||||
|
|
||||||
// Skip if the target path is not a file (e.g., it's a symlink pointing to the secret file).
|
// Skip if the target path is not a file (e.g., it's a symlink pointing to the secret file).
|
||||||
@ -177,8 +177,8 @@ pub async fn unseal_file(path: &str) -> Result<()> {
|
|||||||
fs::write(&unsealed_filename, unsealed_value)?;
|
fs::write(&unsealed_filename, unsealed_value)?;
|
||||||
|
|
||||||
// Remove the original sealed symlink and create a symlink to the unsealed file
|
// Remove the original sealed symlink and create a symlink to the unsealed file
|
||||||
fs::remove_file(&entry.path())?;
|
fs::remove_file(entry.path())?;
|
||||||
symlink(unsealed_filename_symlink, &entry.path())?;
|
symlink(unsealed_filename_symlink, entry.path())?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
Loading…
Reference in New Issue
Block a user