File: xinetd

package info (click to toggle)
distcc 3.1-6.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,568 kB
  • ctags: 3,009
  • sloc: ansic: 19,204; python: 6,177; sh: 4,023; makefile: 862; perl: 52
file content (28 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (8)
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
# default: off
# description: distccd serves C/C++ compilation requests from distcc clients.
#              WARNING: This service should ONLY be used on trusted networks.

# xinetd service description for distcc, contributed by akpm, updated
# by mbp.

# To use this, just check the parameters below and copy this file into
# /etc/xinet.d/distcc, or the appropriate location for your system,
# and then restart xinetd.  You should also create a 'distcc' user.

# ===> Note that running from inetd is generally NOT recommended for
# distcc. distccd should give better performance when it can run as a
# standalone daemon and regulate its own load.

service distcc
{
	disable	= 	yes
	socket_type     = stream
	wait            = no
	user            = distcc
	server          = /usr/local/bin/distccd
	server_args     = --inetd

        # This makes xinetd cope if there is no service listed in
        # /etc/services
        type            = UNLISTED
}