mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
system/rsyslog: Updated for version 5.8.11.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
f3d2a37d5f
commit
5f659ddf3f
5 changed files with 17 additions and 17 deletions
|
@ -1,17 +1,17 @@
|
|||
Rsyslog is an enhanced syslogd supporting, among others, MySQL,
|
||||
PostgreSQL, failover log destinations, syslog/tcp, fine grain output
|
||||
format control, high precision timestamps, queued operations and the
|
||||
Rsyslog is an enhanced syslogd supporting, among others, MySQL,
|
||||
PostgreSQL, failover log destinations, syslog/tcp, fine grain output
|
||||
format control, high precision timestamps, queued operations and the
|
||||
ability to filter on any message part. It is quite compatible with
|
||||
stock sysklogd and can be used as a drop-in replacement. Its advanced
|
||||
features make it suitable for enterprise-class, encryption protected
|
||||
syslog relay chains while at the same time being very easy to setup
|
||||
stock sysklogd and can be used as a drop-in replacement. Its advanced
|
||||
features make it suitable for enterprise-class, encryption protected
|
||||
syslog relay chains while at the same time being very easy to setup
|
||||
for the novice user.
|
||||
|
||||
Before you can run rsyslog, please see README.SLACKWARE
|
||||
|
||||
You can enable a lot of optional (not-autodetected) features by
|
||||
passing variables to the script (VAR=yes/no ./rsyslog.SlackBuild):
|
||||
MYSQL=yes|no (default: no), requires mysql (part of stock Slackware)
|
||||
MYSQL=yes|no (default: no), requires mysql (available in Slackware)
|
||||
PGSQL=yes|no (default: no), requires postgresql
|
||||
RELP=yes|no (default: no), requires librelp
|
||||
LIBDBI=yes|no (default: no), requires libdbi
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/var/log/cron /var/log/debug /var/log/maillog /var/log/messages /var/log/secure /var/log/spooler /var/log/syslog {
|
||||
sharedscripts
|
||||
postrotate
|
||||
/bin/kill -HUP $(cat /var/run/rsyslogd.pid 2>/dev/null) 2>/dev/null || true
|
||||
/bin/kill -HUP `cat /var/run/rsyslogd.pid 2>/dev/null` 2>/dev/null || true
|
||||
endscript
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#
|
||||
|
||||
PRGNAM=rsyslog
|
||||
VERSION=${VERSION:-5.8.9}
|
||||
VERSION=${VERSION:-5.8.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -63,7 +63,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||
--build=$ARCH-slackware-linux \
|
||||
$mysql_option $pgsql_option $libdbi_option $gnutls_option $relp_option
|
||||
$mysql_option $pgsql_option $libdbi_option $gnutls_option $relp_option
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
@ -88,7 +88,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r
|
|||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||
cp -a \
|
||||
AUTHORS COPYING COPYING.LESSER ChangeLog INSTALL NEWS README \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a doc/*.{jpg,html,png} $PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||
chmod -R 0644 $PKG/usr/doc/$PRGNAM-$VERSION/*
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="rsyslog"
|
||||
VERSION="5.8.9"
|
||||
VERSION="5.8.11"
|
||||
HOMEPAGE="http://www.rsyslog.com/"
|
||||
DOWNLOAD="http://www.rsyslog.com/files/download/rsyslog/rsyslog-5.8.9.tar.gz"
|
||||
MD5SUM="3fe2920e7ba8bb06807deaf8dd721d8e"
|
||||
DOWNLOAD="http://www.rsyslog.com/files/download/rsyslog/rsyslog-5.8.11.tar.gz"
|
||||
MD5SUM="0e5ea5228310bebc0f9f6ddf0c3f5a84"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Christophe Trussardi"
|
||||
|
|
|
@ -5,15 +5,15 @@
|
|||
# make exactly 11 lines for the formatting to be correct. It's also
|
||||
# customary to leave one space after the ':'.
|
||||
|
||||
|-----handy-ruler-------------------------------------------------|
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
rsyslog: Rsyslog (enhanced syslogd)
|
||||
rsyslog:
|
||||
rsyslog: Rsyslog is an enhanced syslogd supporting, among others, MySQL,
|
||||
rsyslog: PostgreSQL, failover log destinations, syslog/tcp, fine grain
|
||||
rsyslog: PostgreSQL, failover log destinations, syslog/tcp, fine grain
|
||||
rsyslog: output format control, high precision timestamps, queued
|
||||
rsyslog: operations and the ability to filter on any message part. Its
|
||||
rsyslog: advanced features make it suitable for enterprise-class,
|
||||
rsyslog: encryption protected syslog relay chains while at the same time
|
||||
rsyslog: encryption protected syslog relay chains while at the same time
|
||||
rsyslog: being very easy to setup for the novice user.
|
||||
rsyslog:
|
||||
rsyslog: Homepage: http://www.rsyslog.com/
|
||||
|
|
Loading…
Reference in a new issue