From 640c2a5e58fdaf51965f6b4003d4b41f3e32e24e Mon Sep 17 00:00:00 2001 From: helloimalemur Date: Wed, 17 Sep 2025 12:14:53 -0400 Subject: [PATCH] . --- Cargo.toml | 2 +- src/main.rs | 4 ++-- src/monitors/clients.rs | 2 +- src/monitors/devices.rs | 2 +- src/monitors/filechanges.rs | 2 +- src/monitors/network.rs | 2 +- src/monitors/ssh_burn_file.rs | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 75be734..1ab4397 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" description = "Detect and Act on unauthorized access of any kind from any source." authors = ["jkoontsiii@gmail.com"] license = "MIT" -repository = "https://github.com/helloimalemur/fortiwatch" +repository = "https://github.com/helloimalemur/watchman" keywords = ["file-integrity", "filesystem-integirty", "change-detection", "watchman"] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/main.rs b/src/main.rs index 6875b64..abcd61b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,10 @@ use std::env::consts::OS; use clap::Parser; use crate::arguments::Arguments; -use crate::fortiwatch::AppState; +use crate::watchman::AppState; use crate::prometheus::Prometheus; -mod fortiwatch; +mod watchman; mod monitors; mod prometheus; mod arguments; diff --git a/src/monitors/clients.rs b/src/monitors/clients.rs index a09fd47..71c07a1 100644 --- a/src/monitors/clients.rs +++ b/src/monitors/clients.rs @@ -3,7 +3,7 @@ use std::process::Command; use std::time::{Duration, SystemTime}; use std::env::consts::OS; -use crate::fortiwatch::EventMonitor; +use crate::watchman::EventMonitor; use crate::monitors::actions::reboot_system; use crate::monitors::notify::send_discord; use anyhow::anyhow; diff --git a/src/monitors/devices.rs b/src/monitors/devices.rs index 3d44396..0a036f2 100644 --- a/src/monitors/devices.rs +++ b/src/monitors/devices.rs @@ -1,5 +1,5 @@ use std::env::consts::OS; -use crate::fortiwatch::EventMonitor; +use crate::watchman::EventMonitor; use crate::monitors::actions::reboot_system; use crate::monitors::notify::send_discord; use chrono::Local; diff --git a/src/monitors/filechanges.rs b/src/monitors/filechanges.rs index 70347dc..b9cea63 100644 --- a/src/monitors/filechanges.rs +++ b/src/monitors/filechanges.rs @@ -1,4 +1,4 @@ -use crate::fortiwatch::EventMonitor; +use crate::watchman::EventMonitor; use crate::monitors::notify::send_discord; use chrono::Local; use config::Config; diff --git a/src/monitors/network.rs b/src/monitors/network.rs index df92083..8782c2f 100644 --- a/src/monitors/network.rs +++ b/src/monitors/network.rs @@ -1,5 +1,5 @@ use std::sync::Arc; -use crate::fortiwatch::EventMonitor; +use crate::watchman::EventMonitor; use crate::monitors::actions::reboot_system; use chrono::Local; use config::Config; diff --git a/src/monitors/ssh_burn_file.rs b/src/monitors/ssh_burn_file.rs index b225980..b0e0c9e 100644 --- a/src/monitors/ssh_burn_file.rs +++ b/src/monitors/ssh_burn_file.rs @@ -1,4 +1,4 @@ -use crate::fortiwatch::EventMonitor; +use crate::watchman::EventMonitor; use crate::monitors::actions::unmount_encrypted_volumes; use chrono::{DateTime, Utc}; use config::Config;