/etc/incron.conf is in incron 0.5.10-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# *** incron example configuration file ***
#
# (c) Lukas Jelinek, 2007, 2008
#
# Parameter: system_table_dir
# Meaning: system table directory
# Description: This directory is examined by incrond for system table files.
# Default: /etc/incron.d
#
# Example:
# system_table_dir = /var/spool/incron.systables
# Parameter: user_table_dir
# Meaning: user table directory
# Description: This directory is examined by incrond for user table files.
# Default: /var/spool/incron
#
# Example:
# user_table_dir = /var/spool/incron.usertables
# Parameter: allowed_users
# Meaning: allowed users list file
# Description: This file contains users allowed to use incron.
# Default: /etc/incron.allow
#
# Example:
# allowed_users = /etc/incron/allow
# Parameter: denied_users
# Meaning: denied users list file
# Description: This file contains users denied to use incron.
# Default: /etc/incron.deny
#
# Example:
# denied_users = /etc/incron/deny
# Parameter: lockfile_dir
# Meaning: application lock file directory
# Description: This directory is used for creating a lock avoiding to run
# multiple instances of incrond.
# Default: /var/run
#
# Example:
# lockfile_dir = /tmp
# Parameter: lockfile_name
# Meaning: application lock file name base
# Description: This name (appended by '.pid') is used for creating a lock
# avoiding to run multiple instances of incrond.
# Default: incrond
#
# Example:
# lockfile_name = incron.lock
# Parameter: editor
# Meaning: editor executable
# Description: This name or path is used to run as an editor for editing
# user tables.
# Default: vim
#
# Example:
# editor = nano
|