1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# Defaults for trytond initscript (sysvinit-core)
#
# Note: If your init system is systemd and you want to customize any of the
# default values, proceed like:
# cp /lib/systemd/system/tryton-server.service /etc/systemd/system
# and adapt /etc/systemd/system/tryton-server to your needs.
# Specify the user name (Default: tryton).
DAEMONUSER="tryton"
# Specify an alternate config file (Default: /etc/tryton/trytond.conf).
CONFIGFILE="/etc/tryton/trytond.conf"
# Specify the log configuration file (Default: /etc/tryton/trytond_log.conf).
LOGCONF="/etc/tryton/trytond_log.conf"
# Specify the locale for the server to run (Default: en_US).
#LANG="de_DE.UTF-8"
# Additional options that are passed to the Daemon.
# i.e. to increase the verbosity of the server log add -v
DAEMON_OPTS=" --config ${CONFIGFILE} --logconf ${LOGCONF}"
|