Rev 108 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
69 | luk | 1 | # |
2 | # *** incron example configuration file *** |
||
3 | # |
||
100 | luk | 4 | # (c) Lukas Jelinek, 2007, 2008 |
69 | luk | 5 | # |
6 | |||
7 | |||
8 | # Parameter: system_table_dir |
||
9 | # Meaning: system table directory |
||
10 | # Description: This directory is examined by incrond for system table files. |
||
11 | # Default: /etc/incron.d |
||
12 | # |
||
13 | # Example: |
||
14 | # system_table_dir = /var/spool/incron.systables |
||
15 | |||
16 | |||
17 | # Parameter: user_table_dir |
||
18 | # Meaning: user table directory |
||
19 | # Description: This directory is examined by incrond for user table files. |
||
20 | # Default: /var/spool/incron |
||
21 | # |
||
22 | # Example: |
||
23 | # user_table_dir = /var/spool/incron.usertables |
||
24 | |||
25 | |||
26 | # Parameter: allowed_users |
||
27 | # Meaning: allowed users list file |
||
28 | # Description: This file contains users allowed to use incron. |
||
29 | # Default: /etc/incron.allow |
||
30 | # |
||
31 | # Example: |
||
32 | # allowed_users = /etc/incron/allow |
||
33 | |||
34 | |||
35 | # Parameter: denied_users |
||
36 | # Meaning: denied users list file |
||
37 | # Description: This file contains users denied to use incron. |
||
38 | # Default: /etc/incron.deny |
||
39 | # |
||
40 | # Example: |
||
77 | luk | 41 | # denied_users = /etc/incron/deny |
69 | luk | 42 | |
43 | |||
44 | # Parameter: lockfile_dir |
||
45 | # Meaning: application lock file directory |
||
46 | # Description: This directory is used for creating a lock avoiding to run |
||
47 | # multiple instances of incrond. |
||
48 | # Default: /var/run |
||
49 | # |
||
50 | # Example: |
||
51 | # lockfile_dir = /tmp |
||
52 | |||
53 | |||
54 | # Parameter: lockfile_name |
||
55 | # Meaning: application lock file name base |
||
56 | # Description: This name (appended by '.pid') is used for creating a lock |
||
57 | # avoiding to run multiple instances of incrond. |
||
58 | # Default: incrond |
||
59 | # |
||
60 | # Example: |
||
61 | # lockfile_name = incron.lock |
||
62 | |||
63 | |||
64 | # Parameter: editor |
||
65 | # Meaning: editor executable |
||
108 | luk | 66 | # Description: This name or path is used to run as an editor for editing |
69 | luk | 67 | # user tables. |
68 | # Default: vim |
||
69 | # |
||
70 | # Example: |
||
71 | # editor = nano |
||
72 |