Skip to content

Instantly share code, notes, and snippets.

@jvcleave
Last active December 10, 2015 06:29
Show Gist options
  • Save jvcleave/4395152 to your computer and use it in GitHub Desktop.
Save jvcleave/4395152 to your computer and use it in GitHub Desktop.
/etc/default/distcc
# Defaults for distcc initscript
# sourced by /etc/init.d/distcc
DISTCC_VERBOSE=1
DISTCC_FALLBACK=0
#
# should distcc be started on boot?
#
# STARTDISTCC="true"
STARTDISTCC="true"
#
# Which networks/hosts should be allowed to connect to the daemon?
# You can list multiple hosts/networks separated by spaces.
# Networks have to be in CIDR notation, f.e. 192.168.1.0/24
# Hosts are represented by a single IP Adress
#
# ALLOWEDNETS="127.0.0.1"
ALLOWEDNETS="127.0.0.1 192.168.200.0/23"
#
# Which interface should distccd listen on?
# You can specify a single interface, identified by it's IP address, here.
#
#LISTENER="127.0.0.1"
LISTENER=""
#
# You can specify a (positive) nice level for the distcc process here
#
# NICE="10"
NICE="1"
#
# You can specify a maximum number of jobs, the server will accept concurrently
#
# JOBS=""
JOBS="200"
#
# Enable Zeroconf support?
# If enabled, distccd will register via mDNS/DNS-SD.
# It can then automatically be found by zeroconf enabled distcc clients
# without the need of a manually configured host list.
#
# ZEROCONF="true"
ZEROCONF="true"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment