diff options
author | Michael Biebl <biebl@debian.org> | 2008-07-18 16:41:52 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-07-22 12:24:16 +0200 |
commit | 9b59581a6f7d161c7aafbc3300689337939bb382 (patch) | |
tree | 9b000f97ffa64be57fae549e43d742b0128323db /doc/v3compatibility.html | |
parent | 22f6e935f75514d3bf63fdc42d296c9e6b7b2b4c (diff) | |
download | rsyslog-9b59581a6f7d161c7aafbc3300689337939bb382.tar.gz rsyslog-9b59581a6f7d161c7aafbc3300689337939bb382.tar.xz rsyslog-9b59581a6f7d161c7aafbc3300689337939bb382.zip |
use the $ModLoad syntax consistently.
Update the documentation to use the new, preferred $ModLoad syntax:
- no more MySQL
- name of the in/output plugin without the trailing .so
Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
Diffstat (limited to 'doc/v3compatibility.html')
-rw-r--r-- | doc/v3compatibility.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/v3compatibility.html b/doc/v3compatibility.html index f4eef3a1..51619947 100644 --- a/doc/v3compatibility.html +++ b/doc/v3compatibility.html @@ -32,11 +32,11 @@ are available by which modules.</p> <p>It is suggested that input modules be loaded in the top part of the config file. Here is an example, also highlighting the most important modules:</p> -<p><b>$ModLoad immark # provides --MARK-- +<p><b>$ModLoad immark # provides --MARK-- message capability<br> -$ModLoad imudp # provides UDP syslog reception<br> -$ModLoad imtcp # provides TCP syslog reception<br> -</b><b>$ModLoad imgssapi # provides GSSAPI syslog +$ModLoad imudp # provides UDP syslog reception<br> +$ModLoad imtcp # provides TCP syslog reception<br> +</b><b>$ModLoad imgssapi # provides GSSAPI syslog reception<br> </b><b>$ModLoad imuxsock # provides support for local system logging (e.g. @@ -94,7 +94,7 @@ set the local address the server should listen to via <b>$UDPServerAddress <ip></b> config directive.</p> <p>The following example configures an UDP syslog server at the local address 192.0.2.1 on port 514:</p> -<p><b>$ModLoad imudp.so<br> +<p><b>$ModLoad imudp<br> $UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun directive!<br> $UDPServerRun 514</b></p> @@ -102,7 +102,7 @@ $UDPServerRun 514</b></p> This is the default if no directive is specified.</p> <p>Please note that now multiple listeners are supported. For example, you can do the following:</p> -<p><b>$ModLoad imudp.so<br> +<p><b>$ModLoad imudp<br> $UDPSeverAddress 192.0.2.1 # this MUST be before the $UDPServerRun directive!<br> $UDPServerRun 514<br> @@ -122,7 +122,7 @@ the "Run" directive, e.g. "<i>$UDPServerRun syslog</i>".</p> <h2>klogd</h2> <p>klogd has (finally) been replaced by a loadable input module. To enable klogd functionality, do</p> -<p><b>$ModLoad imklog.so</b></p> +<p><b>$ModLoad imklog</b></p> <p>Note that this can not be handled by the compatibility layer, as klogd was a separate binary.A limited set of klogd command line settings is now supported |