aboutsummaryrefslogtreecommitdiffstats
path: root/serel/serel.conf
blob: a4c10c3652916d3e200422b271c61113688215d9 (plain)
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
#
# serel configuration file
#
# This configuration file controls aspects of the serel
# daemon's behaviour.  It is read once, at startup.
# 
# Brief explanations and compile-time default values are
# shown in the comments below.

# rdfpath:
# A semi-colon-delimited sequence of pathnames containing well-formed RDF.
# The daemon searches this sequence for service-definitions.
# rdfpath = /etc/serel/local.rdf;/etc/serel/default.rdf

# dbdirectory:
# Location of the serel history database 
# dbdirectory = /var/lib/serel/

# dbignore:
# If this keyword is set to "yes" the daemon ignores the serel history
# database.  The database caches dependency information, which can be
# time-consuming to calcuate.
# dbignore = no

# mangledollar:
# The Linux Standards Base Specification 1.2 introduced
# dollar symbols into facility names (eg $syslog)
# http://www.linuxbase.org/spec/refspecs/LSB_1.2.0/gLSB.html#FACILNAME
# The specification reserves symbols prefixed with '$' to itself.
# However serel requires that service (facility) names be legal
# XML name tokens: http://www.w3.org/TR/REC-xml#NT-Nmtoken
# which does not support the dollar symbol '$' within identifiers.
# This keyword tells serel how to mangle facility names prefixed with '$'
# when they are found within boot script comments.
#
# mangledollar = lsb_prefix | strip (default: strip)