File: control

package info (click to toggle)
inotify-tools 4.25.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 660 kB
  • sloc: cpp: 4,669; sh: 1,243; makefile: 98
file content (85 lines) | stat: -rw-r--r-- 3,802 bytes parent folder | download
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Source: inotify-tools
Section: misc
Priority: optional
Maintainer: Joao Eriberto Mota Filho <eriberto@debian.org>
Build-Depends: debhelper-compat (= 13), doxygen
Standards-Version: 4.7.2
Vcs-Git: https://salsa.debian.org/debian/inotify-tools.git
Vcs-Browser: https://salsa.debian.org/debian/inotify-tools
Homepage: https://github.com/rvoicilas/inotify-tools/wiki/

Package: libinotifytools0
Architecture: linux-any
Multi-Arch: same
Section: libs
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: utility wrapper around inotify
 inotify (inode notify) is a Linux kernel subsystem that monitors events in
 filesystems and reports those events to applications in real time via API.
 .
 inotify can be used to monitor individual files or directories. When a
 directory is monitored, inotify will return events for the directory itself
 and for files inside the directory.
 .
 libinotifytools is a thin layer on top of the kernel interface which makes
 it easy to set up watches on many files at once, read events without having
 to deal with low-level I/O and several utility functions for inotify-related
 string formatting.

Package: libinotifytools0-dev
Architecture: linux-any
Multi-Arch: same
Section: libdevel
Provides: libinotifytools-dev
Conflicts: libinotifytools-dev
Depends: libinotifytools0 (= ${binary:Version}),
         ${misc:Depends}
Description: Development library and header files for libinotifytools0
 inotify (inode notify) is a Linux kernel subsystem that monitors events in
 filesystems and reports those events to applications in real time via API.
 .
 inotify can be used to monitor individual files or directories. When a
 directory is monitored, inotify will return events for the directory itself
 and for files inside the directory.
 .
 libinotifytools is a thin layer on top of the kernel interface which makes
 it easy to set up watches on many files at once, read events without having
 to deal with low-level I/O and several utility functions for inotify-related
 string formatting.
 .
 This package is for development only, providing headers, static libraries and
 documentation for the libinotifytools library.

Package: inotify-tools
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: command-line programs providing a simple interface to inotify
 inotify (inode notify) is a Linux kernel subsystem that monitors events in
 filesystems and reports those events to applications in real time via API.
 .
 inotify can be used to monitor individual files or directories. When a
 directory is monitored, inotify will return events for the directory itself
 and for files inside the directory.
 .
 inotify-tools is a set of command-line programs for Linux providing a simple
 interface to inotify. These programs can be used to monitor and act upon
 filesystem events. inotify-tools consists of four utilities: inotifywait,
 inotifywatch, fsnotifywait and fsnotifywatch.
 .
 inotifywait efficiently waits for changes to files, making it appropriate
 for use in shell scripts.
 .
 inotifywatch collects filesystem usage statistics and outputs counts of each
 inotify event.
 .
 fsnotifywait and fsnotifywatch are similar to inotifywait and inotifywatch,
 but they are using Linux's fanotify(7) interface by default. The fanotify API
 also provides notification and interception of filesystem events. Additional
 capabilities compared to the inotify(7) API include the ability to monitor
 all of the objects in a mounted filesystem, the ability to make access
 permission decisions, and the possibility to read or modify files before
 access by other applications.
 .
 inotify-tools is also useful for security activities in firewall systems or
 to detect changes and injections of new files in webservers by intruders.