blob: 5c1f338eccadb53e11c974595d17c7c3a5a41f24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# /etc/conf.d/syncthing: config file for /etc/init.d/syncthing
# User and group as which to run
SYNCTHING_USER="syncthing"
SYNCTHING_GROUP="syncthing"
# Configuration directory
SYNCTHING_HOMEDIR="/var/lib/syncthing"
# Log file location
SYNCTHING_LOGFILE="/var/log/syncthing/syncthing.log"
# umask used to create files
# The default allows group access
SYNCTHING_UMASK=007
# I/O nice level of syncthing
SYNCTHING_IONICE="3"
# Nice level of syncthing
SYNCTHING_NICE="3"
# Extra options for syncthing
#SYNCTHING_OPTS=""
|