1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#####
# Define TTYs to use. Each TTY is specified on it's own line. You should
# not change this from /dev/console, as this may cause problems with X.
tty /dev/console
#####
# TTYs to set to normal on exit. Due to the current implementation
# each TTY must be given separately. Each TTY is specified on it's own
# line, but command-line file expansion is allowed. There is no need to
# fix the TTY on which X is on, only the text consoles.
# Commonly a Linux box has 6 text consoles...
fixtty /dev/tty[1-6]
#####
# Use daemon mode as default? Default (if not set) is not to. This can
# be overriden on the command line.
daemon TRUE
#####
# What type of logging to use. Available options are "syslog" for logging
# via syslogd, "stderr" to send error messages to standard error output
# and "none" for no logging.
log syslog
#####
# Specify files to be used as the communication pipes to ledd. You don't
# need to have any, but it may be useful to have one. Each pipe is defined
# on it's own line.
pipefile /var/run/ledd-pipe
#####
# Specify scripts (or other programs) to execute when ledd is started.
# All output to STDOUT is parsed as commands to ledd and all output to
# STDERR is logged with syslog. Each script is defined on it's own line.
startup @datadir_int@/startup.sh
#####
# Define a pidfile. Only one may be specified. Keep it as the default.
pidfile /var/run/ledd.pid
|