Direvent 1 Introduction 2 Overview 3 Quick Start 4 Invocation 5 Configuration 6 System Dependencies 7 How to Report a Bug Appendix A Legacy Syntax of the 'environ' Statement Appendix B GNU Free Documentation License Concept Index Direvent 1 Introduction 2 Overview 3 Quick Start 4 Invocation 5 Configuration 5.1 Configuration Syntax 5.1.1 Comments 5.1.2 Pragmatic Comments 5.1.3 Statements 5.2 Variable Expansion 5.3 General Settings 5.4 Syslog 5.5 Environment modification 5.6 Watcher 6 System Dependencies 6.1 GNU/Linux systems. 6.2 BSD systems 6.3 Darwin (Mac OS X) 7 How to Report a Bug Appendix A Legacy Syntax of the 'environ' Statement Appendix B GNU Free Documentation License B.1 ADDENDUM: How to use this License for your documents Concept Index Direvent ******** This edition of the 'GNU Direvent' manual, last updated 29 December 2021, documents GNU Direvent Version 5.3. 1 Introduction ************** GNU 'direvent' monitors events in file system directories. For each event that occurs in a set of pre-configured directories, the program calls an external program associated with it, supplying it the information about the event and the location within the file system where it took place. GNU 'direvent' provides an easy way to configure your system to react immediately if certain files undergo changes. This may be helpful, for example, to track changes in important configuration files. Interfaces for tracking changes to file systems are highly system-specific. GNU 'direvent' aims to provide a uniform and system-independent command-level interface. As of version 5.3 'direvent' works with modern Linux kernels (since v. 2.6.13) and BSD systems (FreeBSD, NetBSD, OpenBSD, Darwin). 2 Overview ********** GNU 'direvent' monitors a set of directories on the file system and reacts when a file system event occurs in any of them. Directories and events to monitor are specified in the configuration file. When an event occurs, the program reacts by invoking an external command configured for that event. File system events can be divided into two major groups. The "system-dependent events" are specific for each particular kernel interface. In the contrast, "generic events" don't depend on the underlying system. They provide a higher level of abstraction and make it possible to port GNU 'direvent' configurations between various systems and architectures. The generic events are: -- generic event: create A file was created. This includes files moved from another directory. -- generic event: delete A file was deleted or moved to another directory. -- generic event: write A file was written to. This does not imply that the file was closed. -- generic event: change A file was modified and closed. This is a "compound" event, i.e. it is delivered when a system event that means that the file opened for writing was closed ('CLOSE_WRITE'), is delivered for a file on which one or more 'write' events have been previously delivered. As such it depends on the operating system ability to deliver the 'CLOSE_WRITE' event. Linux and FreeBSD have this ability. Many other systems, such as NetBSD and Darwin, don't. -- generic event: attrib File attributes have changed. This includes changes in the file ownership, mode, link count, etc. A "watcher" is a configuration entity that associates a set of directories with a set of events and instructs 'direvent' to run a specified external command when any of these events occur in any of these directories. This external command (called a "handler") can obtain information about the event that triggered it from the environment variables, or from its command line. Watchers are defined in the configuration file, which 'direvent' reads at startup. The following outlines its syntax: Three types of comments are allowed: inline comments, that begin with a '#' or '//' and extend to the end of line, and multi-line comments, which comprise everything enclosed between '/*' and '*/'. Comments and empty lines are ignored. Whitespace characters are ignored as well, except as they serve to separate tokens. A token is a string of consecutive characters from the following classes: alphanumeric characters, underscores, dots, asterisks, slashes, semicolons, commercial at's, and dashes. Any other sequence of characters must be enclosed in double quotation marks in order to represent a single token. Adjacent quoted strings are concatenated. A configuration statement consists of a keyword and value separated by any amount of whitespace and is terminated with a semicolon. A block statement is a collection of statements enclosed in curly braces. A watcher is declared using the following block statement: watcher { path PATHNAME [recursive [LEVEL]]; file PATTERN-LIST; event EVENT-LIST; command COMMAND-LINE; user NAME; timeout NUMBER; environ { ... }; option STRING-LIST; } Each 'watcher' statement instructs 'direvent' to monitor events from EVENT-LIST occurring in directories specified by PATHNAMEs in 'path' statements (any number of 'path' statements can be given). When any such event is detected, the supplied COMMAND-LINE will be executed. Each directory defined with the 'recursive' keyword will be watched recursively. This means that for each subdirectory created in it, 'direvent' will install a watcher similar to that of its parent directory. Optional LEVEL statement can be used to set up a cut-off nesting level, beyond which the recursive operation is disabled. It is a common practice for the 'path' statement to refer to a directory. However, it is not a requirement. The PATHNAME argument can as well point to any other type of file(1). Moreover, it is not required to exist, either. If it does not, GNU 'direvent' will remember the watcher definition and will set it up when the PATHNAME is eventually created.(2) The rest of statements are optional. The 'file' statement instructs GNU 'direvent' to react only if the event concerned the file whose name matches one of the patterns given in its argument. The 'user' statement can be used to execute the COMMAND-LINE as the user NAME (provided, of course, that 'direvent' is started with root privileges). The 'timeout' specifies the maximum amount of time (in seconds) the command is allowed to run. It defaults to 5. The 'environ' statement modifies the command environment. Finally, the 'option' statement supplies additional options. It can be used, for example, to divert the command's output to syslog. ---------- Footnotes ---------- (1) Obviously, the 'recursive' keyword is valid only if PATHNAME is a directory. (2) *Note path::, for a detailed description. 3 Quick Start ************* Let's suppose you have a directory where users can upload their files and you want these files to be processed right after upload, in real time. Let this directory be '/home/ftp/incoming' and the program to process the upload be '/usr/bin/upload'. Let's also suppose that this program expects name of the uploaded file as its argument. To make 'direvent' handle this task, you would need to create a watcher for the upload directory which would handle the 'create' event: watcher { path /home/ftp/incoming; event create; # more statements follow... On this event, the watcher is to invoke '/usr/bin/upload' with the name of the created file as an argument. To make it possible, the 'direvent' configuration file provides "macro variables", which can be used in the 'command' argument at configuration time and which are expanded to the actual values before the command is executed. Macro variables are referred to using the same syntax as shell variables: a dollar sign followed by the variable name, optionally enclosed in curly braces. The 'file' variable is expanded to the name of the file for which the event is reported. This name is relative to the current working directory which, by the time the handler is executed, is set to the directory where the event occurred. Thus, the handler can be configured as: command "/usr/bin/upload $file"; To summarize, the watcher declaration is: watcher { path /home/ftp/incoming; event create; command "/usr/bin/upload $file"; } Before invoking the handler, the following operations are performed: 1. The current working directory is set to the directory where the event occurred. 2. If the global 'environ' statement is present, the current environment is modified according to its rules. 3. If the 'environ' statement is present in the 'watcher' block, the environment is further modified according to its rules. (*note environment modification: environ.) 4. The standard input is closed. 5. If the 'stdout' option is supplied, the standard output is captured and redirected to the syslog. Otherwise it is closed. 6. If the 'stderr' option is supplied, the standard error is captured and redirected to the syslog. Otherwise it is closed. 7. File descriptors above 2 are closed. 8. Macro variables are expanded in the command line. Unless the 'shell' option is set, environment variables are expanded as well. *Note variable expansion::. 9. If the 'shell' option is set, the handler is invoked via the shell, as '$SHELL -c "COMMAND"'. Otherwise, word splitting is performed on the resulting command line. The first word is treated as the pathname of the program, which is then invoked via the 'execve' system call. 4 Invocation ************ The invocation syntax is: direvent [OPTIONS] [CONFIG] where OPTIONS are command line options discussed below and optional CONFIG supplies the configuration file to use instead of the default '/etc/direvent.conf'. The options are: '-d' '--debug' Increase debug level. '-F NAME' '--facility=NAME' Set syslog facility. '-f' '--foreground' Remain in foreground. '-I DIR' '--include=DIR' Add DIR to the beginning of the include search path (*note include search path::). '-l PRIO' While connected to a terminal, 'direvent' outputs its diagnostics messages to stderr and, if configured, to syslog. This option limits the amount of information output to the standard error. The PRIO argument is one of the following priorities (in order of increasing severity): 'debug', 'info', 'notice', 'warning', 'err', 'crit', 'alert', 'emerg'. When this option is given, only messages with the priority level equal to or greater than PRIO will be duplicated on the standard error. '-P FILE' '--pidfile=FILE' Upon successful startup store the PID of the daemon process in FILE. '-T COMMAND' '--self-test=COMMAND' Run in "self-test mode". In this mode, 'direvent' starts external command supplied as the argument to this option and continues running until the command exits. If COMMAND terminates normally, 'direvent' exits with the code returned by it. If COMMAND terminates on signal, 'direvent' exits with code '0' if this signal was 'SIGHUP', and with code '2' otherwise. The COMMAND can include any command line options or arguments, provided that it is properly quoted. It is invoked as '/bin/sh -c COMMAND' in the environment of the parent 'direvent' process. This mode is used in 'direvent' test suite. The idea is to configure the handler (*note handler::) so that it sends 'SIGHUP' to COMMAND before exiting. To this effect, the special macro variable '$self_test_pid' is defined (*note variable expansion::) to the PID of the running COMMAND process. For example, consider configuration file 'test.conf', which contains the following: watcher { path /tmp; command "/bin/kill -HUP $self_test_pid"; } Then, the following command can be used to check whether 'direvent' correctly reacts on file creation in the watched directory: $ direvent --foreground \ --self-test 'touch /tmp/file && /usr/bin/sleep 20 && exit 1' \ test.conf The command will return '0' if the handler was invoked, and '1' if it was not. '-t' '--lint' Check configuration file for errors and exit. '-u NAME' '--user=NAME' Run as this user. This option overrides the 'user' configuration statement (*note user: general settings.). The following options are "informative". They cause the program to display the requested piece of information and terminate: '-H' '--config-help' Show configuration file summary. '-h' '--help' Give a short usage summary. '--usage' Display available command line options. '-V' '--version' Print program version. 5 Configuration *************** 5.1 Configuration Syntax ======================== The configuration file consists of statements and comments. There are three classes of lexical tokens: keywords, values, and separators. Blanks, tabs, newlines and comments, collectively called "white space" are ignored except as they serve to separate tokens. Some white space is required to separate otherwise adjacent keywords and values. 5.1.1 Comments -------------- "Comments" may appear anywhere where white space may appear in the configuration file. There are two kinds of comments: single-line and multi-line comments. "Single-line" comments start with '#' or '//' and continue to the end of the line: # This is a comment // This too is a comment "Multi-line" or "C-style" comments start with the two characters '/*' (slash, star) and continue until the first occurrence of '*/' (star, slash). Multi-line comments cannot be nested. However, single-line comments may well appear within multi-line ones. 5.1.2 Pragmatic Comments ------------------------ Pragmatic comments are similar to usual single-line comments, except that they cause some changes in the way the configuration is parsed. Pragmatic comments begin with a '#' sign and end with the next physical newline character. '#include ' '#include "FILE"' Include the contents of the file FILE. If FILE is an absolute file name, the named file is included. An error message will be issued if it does not exist. If FILE contains wildcard characters ('*', '[', ']' or '?'), it is interpreted as a shell globbing pattern and all files matching that pattern are included, in lexicographical order. If no matching files are found, the directive is replaced with an empty line. Otherwise, the form with angle brackets searches for file in the "include search path", while the second one looks for it in the current working directory first, and, if not found there, in the include search path. If the file is not found, an error message will be issued. "Include search path" is formed by two directory sets: the user-defined search path, as defined by eventual '-I' (*note include option::) command line options, and the standard include search path, defined at compile time. The latter can be inspected using the '--help' option. The order of directories is as follows. First, 'direvent' scans any directories given with '-I' options, in the same order as given on the command line. If FILE is not found in any of them, the standard include search path is scanned. It is defined at the compile time and by default consists of two directories: * 'PREFIX/share/direvent/include' * 'PREFIX/share/direvent/5.3/include' where PREFIX is the installation prefix. The default can be changed when configuring the package. To inspect the actual standard include search path at the runtime, run 'direvent --help', and look for the string 'Include search path:' in its output. '#include_once ' '#include_once FILE' Same as '#include', except that, if the FILE has already been included, it will not be included again. '#line NUM' '#line NUM "FILE"' This line causes the parser to believe, for purposes of error diagnostics, that the line number of the next source line is given by NUM and the current input file is named by FILE. If the latter is absent, the remembered file name does not change. '# NUM "FILE"' This is a special form of '#line' statement, understood for compatibility with the C preprocessor. 5.1.3 Statements ---------------- A "simple statement" consists of a keyword and value separated by any amount of whitespace. Simple statement is terminated with a semicolon (';'). The following is a simple statement: standalone yes; pidfile /var/run/direvent.pid; A "keyword" begins with a letter and may contain letters, decimal digits, underscores ('_') and dashes ('-'). Examples of keywords are: 'expression', 'output-file'. A "value" can be one of the following: number A number is a sequence of decimal digits. boolean A boolean value is one of the following: 'yes', 'true', 't' or '1', meaning "true", and 'no', 'false', 'nil', '0' meaning "false". unquoted string An unquoted string may contain letters, digits, and any of the following characters: '_', '-', '.', '/', '@', '*', ':'. quoted string A quoted string is any sequence of characters enclosed in double-quotes ('"'). A backslash appearing within a quoted string introduces an "escape sequence", which is replaced with a single character according to the following rules: Sequence Replaced with \a Audible bell character (ASCII 7) \b Backspace character (ASCII 8) \f Form-feed character (ASCII 12) \n Newline character (ASCII 10) \r Carriage return character (ASCII 13) \t Horizontal tabulation character (ASCII 9) \v Vertical tabulation character (ASCII 11) \\ A single backslash ('\') \" A double-quote. Table 5.1: Backslash escapes In addition, the sequence '\NEWLINE' is removed from the string. This allows to split long strings over several physical lines, e.g.: "a long string may be\ split over several lines" If the character following a backslash is not one of those specified above, the backslash is ignored and a warning is issued. Here-document A "here-document" is a special construct that allows to introduce strings of text containing embedded newlines. The '<. You hit a bug if at least one of the conditions below is met: * 'direvent' terminates on signal 11 (SIGSEGV) or 6 (SIGABRT). * The program fails to do its job as described in this manual. If you think you've found a bug, please be sure to include maximum information available to reliably reproduce it, or at least to analyze it. The information needed is: * Version of the package you are using. * Command line options and configuration file. * Conditions under which the bug appears. Any errors, typos or omissions found in this manual also qualify as bugs. Please report them, if you happen to find any. Appendix A Legacy Syntax of the 'environ' Statement *************************************************** This appendix describes the syntax of the 'environ' statement used in GNU 'direvent' versions 5.2 and earlier. The use of this legacy syntax is discouraged. It is supported for backward compatibility only and will be removed in future versions. -- legacy syntax: environ ARGS Modify command environment. Arguments are a single environment modification directive, a whitespace-delimited list of directives, or a proper list (*note list::) of directives. The following directives are available. To facilitate switching to the modern 'environ' syntax, the discussion below lists, for each legacy directive, its modern syntax equivalent (*note environ::). '-' (a single dash) Clear the inherited environment, but retain the variables added by 'direvent' itself. The removed environment variables can be selectively restored using the directives discussed below. If used, this must be the first directive in the list. The modern syntax equivalent is: environ { clear; keep "DIREVENT_*"; } '--' (double-dash) Clear the entire environment, including the variables added by 'direvent'. If used, this must be the first directive in the list. The modern syntax equivalent is: environ { clear; } -NAME Unset the variable NAME. The modern syntax equivalent is environ { unset NAME; } -NAME=VAL Unset the environment variable NAME only if its value is VAL. The modern syntax equivalent is: environ { unset "NAME=VAL"; } NAME Restore the environment variable NAME. This directive is useful after '-' or '--' to retain some variables from the environment. The modern syntax equivalent is: keep NAME; NAME=VALUE Define environment variable NAME to have given VALUE. It is equivalent to: environ { keep "NAME=VALUE"; } NAME+=VALUE Retain variable NAME and append VALUE to its existing value. If no such variable is present in the environment, it is created and VALUE is assigned to it. However, if VALUE begins with a punctuation character, this character is removed from it before the assignment. This is convenient for using this construct with environment variables like 'PATH', e.g.: PATH+=:/sbin In this example, if 'PATH' exists, ':/sbin' will be appended to it. Otherwise, it will be created and '/sbin' will be assigned to it. In modern syntax, use shell variable references, e.g.: environ { set "PATH=${PATH}${PATH:+:}/sbin"; } NAME=+VALUE Retain variable NAME and prepend VALUE to its existing value. If no such variable is present in the environment, it is created and VALUE is assigned to it. However, if VALUE ends with a punctuation character, this character is removed from it before assignment. In modern syntax, use shell variable references, e.g. instead of doing environ PATH=+/sbin: use environ { set "PATH=/sbin${PATH:+:}$PATH"; } Appendix B GNU Free Documentation License ***************************************** Version 1.2, November 2002 Copyright (C) 2000, 2001, 2002, 2014 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. 0. PREAMBLE The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others. This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software. We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference. 1. APPLICABILITY AND DEFINITIONS This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law. A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language. A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them. The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none. The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words. A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque". Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only. The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text. A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements", "Dedications", "Endorsements", or "History".) To "Preserve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this definition. The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License. 2. VERBATIM COPYING You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3. You may also lend copies, under the same conditions stated above, and you may publicly display copies. 3. COPYING IN QUANTITY If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects. If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages. If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public. It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. 4. MODIFICATIONS You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version: A. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission. B. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement. C. State on the Title page the name of the publisher of the Modified Version, as the publisher. D. Preserve all the copyright notices of the Document. E. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. F. Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. G. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice. H. Include an unaltered copy of this License. I. Preserve the section Entitled "History", Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled "History" in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. J. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein. L. Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. M. Delete any section Entitled "Endorsements". Such a section may not be included in the Modified Version. N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with any Invariant Section. O. Preserve any Warranty Disclaimers. If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles. You may add a section Entitled "Endorsements", provided it contains nothing but endorsements of your Modified Version by various parties--for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard. You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one. The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version. 5. COMBINING DOCUMENTS You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers. The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work. In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "History"; likewise combine any sections Entitled "Acknowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled "Endorsements." 6. COLLECTIONS OF DOCUMENTS You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects. You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. 7. AGGREGATION WITH INDEPENDENT WORKS A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document. If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate. 8. TRANSLATION Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail. If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title. 9. TERMINATION You may not copy, modify, sublicense, or distribute the Document except as expressly provided for under this License. Any other attempt to copy, modify, sublicense or distribute the Document is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 10. FUTURE REVISIONS OF THIS LICENSE The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See . Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. B.1 ADDENDUM: How to use this License for your documents ======================================================== To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page: Copyright (C) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the "with...Texts." line with this: with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software. Concept Index ************* This is a general index of all issues discussed in this manual * Menu: * #include: Pragmatic Comments. (line 381) * #include_once: Pragmatic Comments. (line 418) * #line: Pragmatic Comments. (line 423) * --config-help: Invocation. (line 329) * --debug: Invocation. (line 258) * --facility: Invocation. (line 260) * --foreground: Invocation. (line 263) * --help: Invocation. (line 331) * --include: Invocation. (line 266) * --lint: Invocation. (line 317) * --pidfile: Invocation. (line 279) * --self-test: Invocation. (line 283) * --usage: Invocation. (line 334) * --user: Invocation. (line 320) * --version: Invocation. (line 336) * -d: Invocation. (line 258) * -F: Invocation. (line 260) * -f: Invocation. (line 263) * -H: Invocation. (line 329) * -h: Invocation. (line 331) * -I: Invocation. (line 266) * -l: Invocation. (line 270) * -P: Invocation. (line 279) * -T: Invocation. (line 283) * -t: Invocation. (line 317) * -u: Invocation. (line 320) * -V: Invocation. (line 336) * ACCESS, linux event: linux. (line 1017) * attrib: Overview. (line 98) * ATTRIB, BSD: bsd. (line 1069) * ATTRIB, linux event: linux. (line 1018) * block statement: Statements. (line 552) * boolean value: Statements. (line 456) * BSD: bsd. (line 1041) * change: Overview. (line 89) * clear: environ. (line 772) * CLOSE, FreeBSD: bsd. (line 1086) * CLOSE, NetBSD: bsd. (line 1086) * CLOSE_NOWRITE, linux event: linux. (line 1022) * CLOSE_WRITE, FreeBSD: bsd. (line 1089) * CLOSE_WRITE, linux event: linux. (line 1020) * CLOSE_WRITE, NetBSD: bsd. (line 1089) * command: watcher. (line 934) * Comments in a configuration file: Comments. (line 358) * comments, pragmatic: Pragmatic Comments. (line 376) * configuration file statements: Statements. (line 437) * create: Overview. (line 78) * CREATE, linux event: linux. (line 1024) * Darwin: darwin. (line 1103) * debug: general settings. (line 683) * delete: Overview. (line 82) * DELETE, BSD: bsd. (line 1060) * DELETE, linux event: linux. (line 1026) * DIREVENT_FILE: environ. (line 751) * DIREVENT_GENEV_CODE: environ. (line 741) * DIREVENT_GENEV_NAME: environ. (line 745) * DIREVENT_SYSEV_CODE: environ. (line 731) * DIREVENT_SYSEV_NAME: environ. (line 735) * environ: environ. (line 755) * environ <1>: watcher. (line 980) * environ <2>: environ legacy syntax. (line 1140) * environment, handler: environ. (line 731) * escape sequence: Statements. (line 464) * eval: environ. (line 811) * event: watcher. (line 922) * events: Overview. (line 69) * events, generic: Overview. (line 76) * events, system-dependent, on BSD: bsd. (line 1058) * events, system-dependent, on Darwin: bsd. (line 1058) * events, system-dependent, on linux: linux. (line 1014) * EXTEND, BSD: bsd. (line 1066) * facility: syslog. (line 706) * facility, syslog: syslog. (line 707) * FDL, GNU Free Documentation License: Copying This Manual. (line 1246) * file: variable expansion. (line 604) * file <1>: watcher. (line 897) * file system events: Overview. (line 69) * foreground: general settings. (line 676) * fs.inotify.max_user_watches: linux. (line 1001) * generic events: Overview. (line 76) * genev_code: variable expansion. (line 607) * genev_name: variable expansion. (line 611) * GNU/Linux: linux. (line 998) * Handler environment variables: environ. (line 731) * handler execution environment: Quick start. (line 220) * handler, defining: watcher. (line 935) * handler, introduced: Overview. (line 102) * here-document: Statements. (line 496) * include directories, preprocessor: Pragmatic Comments. (line 398) * include search path, preprocessor: Pragmatic Comments. (line 398) * inotify: linux. (line 998) * keep: environ. (line 777) * keep <1>: environ. (line 778) * kqueue: bsd. (line 1041) * LINK, BSD: bsd. (line 1072) * linux kernel: linux. (line 998) * list: Statements. (line 536) * logging: syslog. (line 690) * Mac OS X: darwin. (line 1103) * macro expansion: variable expansion. (line 567) * MODIFY, linux event: linux. (line 1028) * MOVED_FROM, linux event: linux. (line 1030) * MOVED_TO, linux event: linux. (line 1032) * multi-line comments: Comments. (line 366) * number of open file descriptors: bsd. (line 1045) * number of watches, linux: linux. (line 1001) * OPEN, FreeBSD: bsd. (line 1092) * OPEN, linux event: linux. (line 1034) * OPEN, NetBSD: bsd. (line 1092) * option: watcher. (line 958) * path: watcher. (line 863) * pidfile: general settings. (line 679) * pragmatic comments: Pragmatic Comments. (line 376) * preprocessor include search path: Pragmatic Comments. (line 398) * print-priority: syslog. (line 715) * quoted string: Statements. (line 464) * READ, FreeBSD: bsd. (line 1093) * RENAME, BSD: bsd. (line 1075) * REVOKE, BSD: bsd. (line 1078) * self-test mode: Invocation. (line 283) * self_test_pid: variable expansion. (line 627) * sentinel: watcher. (line 880) * set: environ. (line 800) * shell, watcher option: watcher. (line 962) * simple statements: Statements. (line 437) * single-line comments: Comments. (line 358) * statement, block: Statements. (line 552) * statement, simple: Statements. (line 437) * statements, configuration file: Statements. (line 437) * stdout, watcher option: watcher. (line 973) * strerr, watcher option: watcher. (line 977) * string, quoted: Statements. (line 464) * string, unquoted: Statements. (line 460) * sysctl: linux. (line 1001) * sysctl.conf: linux. (line 1011) * sysev_code: variable expansion. (line 617) * sysev_name: variable expansion. (line 621) * syslog: syslog. (line 690) * syslog facility: syslog. (line 707) * syslog tag: syslog. (line 712) * system-dependent events on BSD: bsd. (line 1058) * system-dependent events on Darwin: bsd. (line 1058) * system-dependent events, linux: linux. (line 1014) * tag: syslog. (line 711) * tag, syslog: syslog. (line 712) * timeout: watcher. (line 954) * unset: environ. (line 820) * unset <1>: environ. (line 821) * user: general settings. (line 672) * user <1>: watcher. (line 951) * variable expansion: variable expansion. (line 567) * wait, watcher option: watcher. (line 968) * watcher declaration: watcher. (line 850) * watcher declaration, summary: Overview. (line 131) * watcher, complete description: watcher. (line 845) * watcher, introduced: Overview. (line 102) * write: Overview. (line 85) * WRITE, BSD: bsd. (line 1063)