summaryrefslogtreecommitdiff
path: root/sys-devel/distcc/files/3.1/conf
blob: 39f6e3e86f4504f0b9f8185aa02c29d1556cb1f7 (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
# /etc/conf.d/distccd: config file for /etc/init.d/distccd

# this is the distccd executable 
DISTCCD_EXEC="/usr/bin/distccd"

# this is where distccd will store its pid file
DISTCCD_PIDFILE="/var/run/distccd/distccd.pid"

# Ports:
# Default port is 3632.  For most people the default is okay.
#
# Logging:
# You can change some logging options here:
# --log-file FILE
# --log-level LEVEL  [critical,error,warning, notice, info, debug]
#
# Leaving --log-file blank will log to syslog
# example: --log-file /dev/null --log-level warning
# example: --log-level critical
#
# Nice level:
# The default nice level is 15. You can change it by adding: -N xx
# where xx is the nice level.

# SECURITY NOTICE:
# It is HIGHLY recommended that you use the --listen option
# for increased security. You can specify an IP to permit connections 
# from or a CIDR mask
# --listen accepts only a single IP
# --allow is now mandatory as of distcc-2.18.
# example:  --allow 192.168.0.0/24
# example:  --allow 192.168.0.5 --allow 192.168.0.150
# example:  --listen 192.168.0.2

DISTCCD_OPTS="--port 3632 --log-level notice --log-file /var/log/distccd.log -N 15"