summaryrefslogtreecommitdiffstats
path: root/doc/install.html
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2008-07-18 16:41:52 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2008-07-22 12:24:16 +0200
commit9b59581a6f7d161c7aafbc3300689337939bb382 (patch)
tree9b000f97ffa64be57fae549e43d742b0128323db /doc/install.html
parent22f6e935f75514d3bf63fdc42d296c9e6b7b2b4c (diff)
downloadrsyslog-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/install.html')
-rw-r--r--doc/install.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/install.html b/doc/install.html
index 711552e6..661ae943 100644
--- a/doc/install.html
+++ b/doc/install.html
@@ -58,11 +58,11 @@ to load plug-in modules to perform useful work (more about
<a href="v3compatibility.html">compatibilty notes v3</a>). To load the most common plug-ins,
add the following to the top of rsyslog.conf:</p>
<p>
-$ModLoad immark.so # provides --MARK-- message capability <br />
-$ModLoad imudp.so # provides UDP syslog reception <br />
-$ModLoad imtcp.so # provides TCP syslog reception and GSS-API (if compiled to support it) <br />
-$ModLoad imuxsock.so # provides support for local system logging (e.g. via logger command) <br />
-$ModLoad imklog.so # provides kernel logging support (previously done by rklogd) <br />
+$ModLoad immark # provides --MARK-- message capability <br />
+$ModLoad imudp # provides UDP syslog reception <br />
+$ModLoad imtcp # provides TCP syslog reception and GSS-API (if compiled to support it) <br />
+$ModLoad imuxsock # provides support for local system logging (e.g. via logger command) <br />
+$ModLoad imklog # provides kernel logging support (previously done by rklogd) <br />
</p>
Change rsyslog.conf for any further
enhancements you would like to see. For example, you can add database writing as