|
Line 0
Link Here
|
|
|
1 |
# Copyright 1999-2010 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/app-admin/rsyslog/files/5-stable/rsyslog.confd,v 1.1 2010/10/21 07:38:29 dev-zero Exp $ |
| 4 |
|
| 5 |
# Define the keytab to pull the kerberos 5 key from. Leave blank to disable |
| 6 |
# krb5 features in the init script |
| 7 |
KRB5_KTNAME="/etc/${SVCNAME}.keytab" |
| 8 |
|
| 9 |
# Define the kerberos 5 credentials cache file to utilize for the rsyslogd service |
| 10 |
# This file will be created on start by the k5start utility and owned by |
| 11 |
# the syslog user |
| 12 |
KRB5CCNAME="/tmp/krb5cc_${SVCNAME}" |
| 13 |
|
| 14 |
# Define the principle to obtain a kerberos 5 key for |
| 15 |
KRB5_PRINC="log/host.example.com" |
| 16 |
|
| 17 |
# Define the time (in minutes) to refresh kerberos credentials. Without this, |
| 18 |
# rsyslogd's credentials would eventually expire and no longer be able to send krb5 |
| 19 |
# messages to your rsyslogd server. The setting below sets it to one minute before |
| 20 |
# 8 hours |
| 21 |
KRB5_TICKET_TIME=479 |
| 22 |
|
| 23 |
# Define the k5start pid file |
| 24 |
KRB_PIDFILE="/var/run/k5rsyslogd.pid" |
| 25 |
|
| 26 |
# Configuration file |
| 27 |
CONFIGFILE="/etc/rsyslog.conf" |
| 28 |
|
| 29 |
# PID file |
| 30 |
PIDFILE="/var/run/rsyslogd.pid" |
| 31 |
|
| 32 |
# Options to rsyslogd |
| 33 |
# See rsyslogd(8) for more details |
| 34 |
# Notes: |
| 35 |
# * Do not specify another PIDFILE but use the variable above to change the location |
| 36 |
# * Do not specify another CONFIGFILE but use the variable above to change the location |
| 37 |
# * "-c5" tells rsyslog to _not_ run in sysklogd compatibility mode |
| 38 |
RSYSLOG_OPTS="-c5" |