datastore: remove unused list_files function

it also doesn't belong into this type

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-04-20 09:58:12 +02:00
parent c4b2d26cdb
commit 2d5c20c8f5
1 changed files with 0 additions and 9 deletions

View File

@ -386,15 +386,6 @@ impl BackupInfo {
} }
} }
pub fn list_files(base_path: &Path, backup_dir: &BackupDir) -> Result<Vec<String>, Error> {
let mut path = base_path.to_owned();
path.push(backup_dir.relative_path());
let files = list_backup_files(libc::AT_FDCWD, &path)?;
Ok(files)
}
pub fn is_finished(&self) -> bool { pub fn is_finished(&self) -> bool {
// backup is considered unfinished if there is no manifest // backup is considered unfinished if there is no manifest
self.files.iter().any(|name| name == MANIFEST_BLOB_NAME) self.files.iter().any(|name| name == MANIFEST_BLOB_NAME)