From 9b59581a6f7d161c7aafbc3300689337939bb382 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Fri, 18 Jul 2008 16:41:52 +0200 Subject: 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 --- doc/install.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/install.html') 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 compatibilty notes v3). To load the most common plug-ins, add the following to the top of rsyslog.conf:

-$ModLoad immark.so # provides --MARK-- message capability
-$ModLoad imudp.so # provides UDP syslog reception
-$ModLoad imtcp.so # provides TCP syslog reception and GSS-API (if compiled to support it)
-$ModLoad imuxsock.so # provides support for local system logging (e.g. via logger command)
-$ModLoad imklog.so # provides kernel logging support (previously done by rklogd)
+$ModLoad immark # provides --MARK-- message capability
+$ModLoad imudp # provides UDP syslog reception
+$ModLoad imtcp # provides TCP syslog reception and GSS-API (if compiled to support it)
+$ModLoad imuxsock # provides support for local system logging (e.g. via logger command)
+$ModLoad imklog # provides kernel logging support (previously done by rklogd)

Change rsyslog.conf for any further enhancements you would like to see. For example, you can add database writing as -- cgit