-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:Achiefs/fim into 140-rule-trigger
- Loading branch information
Showing
17 changed files
with
115 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,13 @@ fim (0.5.0-1) xenial; urgency=medium | |
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 | ||
|
||
-- Jose Fernandez <[email protected]> Fri, 17 Nov 2023 12:57:00 +0000 | ||
-- Jose Fernandez <[email protected]> Fri, 19 Apr 2024 16:04:00 +0000 | ||
|
||
fim (0.4.11-1) xenial; urgency=medium | ||
|
||
* More info: https://github.com/Achiefs/fim/releases/tag/v0.4.11 | ||
|
||
-- Jose Fernandez <[email protected]> Fri, 19 Apr 2024 12:48:00 +0000 | ||
|
||
fim (0.4.10-1) xenial; urgency=medium | ||
|
||
|
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,9 +99,12 @@ rm -fr %{buildroot} | |
# ----------------------------------------------------------------------------- | ||
|
||
%changelog | ||
* Fri Nov 17 2023 support <[email protected]> - 0.5.0 | ||
* Fri Apr 19 2024 support <[email protected]> - 0.5.0 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.5.0 | ||
|
||
* Fri Apr 19 2024 support <[email protected]> - 0.4.11 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.11 | ||
|
||
* Tue Oct 31 2023 support <[email protected]> - 0.4.10 | ||
- More info: https://github.com/Achiefs/fim/releases/tag/v0.4.10 | ||
|
||
|
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
node: "FIM" | ||
|
||
# Events configuration, where to store produced events | ||
events: | ||
destination: file | ||
file: /var/lib/fim/events.json | ||
|
||
# Audit extended files and folders information | ||
audit: | ||
- path: /etc | ||
labels: ["tmp", "linux"] | ||
ignore: [".swp"] | ||
allowed: [".txt", ".rs"] | ||
|
||
# Simple files and folders information | ||
monitor: | ||
- path: /bin/ | ||
- path: /usr/bin/ | ||
labels: ["usr/bin", "linux"] | ||
- path: /etc | ||
labels: ["etc", "linux"] | ||
|
||
# App procedure and errors logging | ||
log: | ||
file: /var/log/fim/fim.log | ||
# Available levels [debug, info, error, warning] | ||
level: info |