rev blacklist

This commit is contained in:
jamesk 2024-04-15 18:07:03 -04:00
parent a9d933d7b0
commit e8657f7ba4
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "sys-compare"
description = "Track Filesystem Integrity via 'Snapshots' which contain a HashMap of the files and their corresponding hash signature from a specified directory."
version = "0.1.9"
version = "0.2.0"
edition = "2021"
authors = ["james@koonts.net"]
license = "MIT"

View File

@ -25,11 +25,7 @@ impl CreateMode {
root_path,
snapshot: Snapshot {
file_hashes: Arc::new(Mutex::new(Default::default())),
black_list: vec![
"/dev".to_string(),
"/proc".to_string(),
"/tmp".to_string(),
],
black_list: vec![],
root_path: "".to_string(),
hash_type: BLAKE3,
uuid: "".to_string(),
@ -41,7 +37,11 @@ impl CreateMode {
impl CreateMode {
pub fn run(&mut self) -> Result<(), Error> {
let snapshot = create_snapshot(self.root_path.as_str(), BLAKE3, vec![])?;
let snapshot = create_snapshot(self.root_path.as_str(), BLAKE3, vec![
"/dev".to_string(),
"/proc".to_string(),
"/tmp".to_string(),
])?;
self.snapshot = snapshot.clone();
if let Ok(e) = snapshot.file_hashes.lock() {
println!("Total FileHash Entries {}", e.len());