extend README.md

This commit is contained in:
2020-11-02 16:22:33 +01:00
parent 384d29025e
commit b27c1bc623
3 changed files with 18 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
# pyinotifyd
A daemon to monitore filesystems events with inotify on Linux and execute tasks, which can be Python functions or shell commands.
A daemon to monitore filesystems events with inotify on Linux and execute tasks, which can be Python functions or shell commands. It is build on top of the pyinotify library.
## Dependencies
## Requirements
* [pyinotify](https://github.com/seb-m/pyinotify)
## Installation
@@ -16,16 +16,21 @@ The config file is written in Python syntax. pyinotifyd reads config options fro
This is the default configuration:
```python
pyinotifyd_config = {
# List of watches, description below
"watches": [],
# Set the loglevel (see https://docs.python.org/3/library/logging.html#levels)
"loglevel": logging.INFO,
# Set the timeout to wait for pending tasks to complete during shutdown
"shutdown_timeout": 30
}
```
Global options:
* **watches**
List of Watches, description below.
* **loglevel**
Set the loglevel, you may use every available loglevel of the Python logging framework.
* **shutdown_timeout**
Timeout to wait for pending tasks to complete when shutdown.
## Watch configuration
A Watch is defined as a dictionary which contains the config options:
```python
{
"path": "/tmp",
"rec": True,
"auto_add": True,
"event_map": {}
}
```

BIN
docs/.config.py.swp Normal file

Binary file not shown.

View File

@@ -67,11 +67,11 @@ class Task:
class TaskScheduler:
def __init__(self, job, delay=0, files=True, directories=False,
def __init__(self, job, delay=0, files=True, dirs=False,
logname="TaskScheduler"):
self._delay = delay
self._files = files
self._directories = directories
self._dirs = dirs
self._job = job
self._tasks = {}
self._log = logging.getLogger(logname)
@@ -86,7 +86,7 @@ class TaskScheduler:
path = event.pathname
maskname = event.maskname.split("|", 1)[0]
if (not event.dir and not self._files) or \
(event.dir and not self._directories):
(event.dir and not self._dirs):
return
if path in self._tasks: