Magellan Linux

Contents of /trunk/distcc/distccd.confd

Parent Directory Parent Directory | Revision Log Revision Log


Revision 144 - (show annotations) (download)
Tue May 8 20:06:05 2007 UTC (16 years, 11 months ago) by niro
File size: 1221 byte(s)
-import

1 # Distccd configuration file
2
3 DISTCCD_OPTS=""
4
5 # This is the distccd executable
6 DISTCCD_EXEC=/usr/bin/distccd
7
8 # This is where distccd will store its pid file
9 DISTCCD_PIDFILE=/var/run/distccd/distccd.pid
10
11 # Set this option to run distccd with extra parameters
12 # Default port is 3632. For most people the default is okay.
13 DISTCCD_OPTS="${DISTCCD_OPTS} --port 3632"
14
15
16 # Logging
17 # You can change some logging options here:
18 # --log-file FILE
19 # --log-level LEVEL [critical,error,warning, notice, info, debug]
20 #
21 # Leaving --log-file blank will log to syslog
22 # example: --log-file /dev/null --log-level warning
23 # example: --log-level critical
24
25 DISTCCD_OPTS="${DISTCCD_OPTS} --log-level critical"
26
27 # SECURITY NOTICE:
28 # It is HIGHLY recomended that you use the --allow or --listen options
29 # for increased security. You can specify an IP to permit connections
30 # from or a CIDR mask
31 # --listen accepts only a single IP
32 #
33 # Please notice that this option *must* be set with version >= 2.18.x
34 #
35 # example: --allow 192.168.0.0/24
36 # example: --allow 192.168.0.5 --allow 192.168.0.150
37 # example: --listen 192.168.0.2
38
39 DISTCCD_OPTS="${DISTCCD_OPTS} --allow 192.168.0.0/24"
40
41 # set this for niceness
42 # Default is 15
43 DISTCCD_NICE="15"