forked from rflament/loggedfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloggedfs.spec
30 lines (24 loc) · 1.15 KB
/
loggedfs.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Summary: Transparent fuse-filesystem which allows to log every operation that happens in the backend filesystem.
Name: loggedfs
Version: 0.9
Release: 1.fc6
Source: %{name}-%{version}.tar.bz2
Packager: Remi Flament <remipouak at gmail dot com>
Vendor: Remi Flament <remipouak at gmail dot com>
License: Apache 2.0
Group: Development/Tools
Url: https://github.com/rflament/loggedfs/
Requires: fuse >= 2.6 fuse-libs >= 2.6 rlog >= 1.3 pcre >= 6.6 libxml2 >= 2.6
%description
LoggedFS is a transparent fuse-filesystem which allows you to log every operation that happens in the backend filesystem. Logs can be written to syslog, to a file, or to standard output. It comes with an XML configuration file in which you can choose exactly what you want to log. You can add filters on users, operations (open, read, write, chown, chmod, etc.), filenames, and return codes. Filename's filters are regular expressions. Since it is fuse-based, you don't need to change anything in your kernel or hard disk partition to use it.
%prep
%setup -q
%build
make
%install
make install
%files
%defattr(-,root,root)
/usr/bin/loggedfs
/etc/loggedfs.xml
%doc /usr/share/man/man1/loggedfs.1*