rev blacklist

This commit is contained in:
jamesk 2024-04-15 18:57:24 -04:00
parent a23ce48b92
commit 9a4875bfd0
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -41,6 +41,7 @@ impl CreateMode {
"/dev".to_string(), "/dev".to_string(),
"/proc".to_string(), "/proc".to_string(),
"/tmp".to_string(), "/tmp".to_string(),
"/sys".to_string(),
])?; ])?;
self.snapshot = snapshot.clone(); self.snapshot = snapshot.clone();
if let Ok(e) = snapshot.file_hashes.lock() { if let Ok(e) = snapshot.file_hashes.lock() {