b5ae06
diff -urNp a/man/snmp_config.5.def b/man/snmp_config.5.def
b5ae06
--- a/man/snmp_config.5.def	2017-06-26 11:30:42.728527539 +0200
b5ae06
+++ b/man/snmp_config.5.def	2017-06-26 11:33:19.766436329 +0200
b5ae06
@@ -179,14 +179,28 @@ during normal configuration file process
b5ae06
 .RS
b5ae06
 .nf
b5ae06
 # include site specific config
b5ae06
-include site.conf
b5ae06
+includeFile site.conf
b5ae06
 .RE
b5ae06
 .PP
b5ae06
-This will search every directory in the configuration path for files
b5ae06
-named site.conf, and will process those files before returning to the
b5ae06
-processing of the original file. Note that if '.conf' is omitted,
b5ae06
-it will be appended. That is, all configuration files must end
b5ae06
-in '.conf'.
b5ae06
+This will load the specified configuration file. The
b5ae06
+path to file must be either absolute, starting with '/',
b5ae06
+or relative. The relative path is then relative to the directory
b5ae06
+where the parent file with 'includeFile' directive resides.
b5ae06
+.PP
b5ae06
+The included file name does not need to have '.conf' suffix.
b5ae06
+.PP
b5ae06
+.RS
b5ae06
+.nf
b5ae06
+# include a all *.conf files in a directory
b5ae06
+includeDir /etc/snmp/config.d
b5ae06
+.RE
b5ae06
+.PP
b5ae06
+This will search specified directory for all files with '.conf'
b5ae06
+suffix and process them as if they were included using includeFile
b5ae06
+directive. The configuration files are not processed in any particular
b5ae06
+order.
b5ae06
+.PP
b5ae06
+The specified directory must be absolute directory path.
b5ae06
 .SH "API INTERFACE"
b5ae06
 .PP
b5ae06
 Information about writing C code that makes use of this system in
b5ae06