~mathiaz/+junk/pkg-puppet-daily-debian-dir

1 by Mathias Gug
Initial import.
1
# Defaults for puppetmaster - sourced by /etc/init.d/puppetmaster
2
3
# Start puppet on boot?
4
START=yes
5
6
# Startup options
7
DAEMON_OPTS=""
8
9
# What server type to run 
10
# Options: 
11
# 	   webrick (default, cannot handle more than ~30 nodes)
12
#	   mongrel (scales better than webrick because you can run
13
#	    	    multiple processes if you are getting
14
#	    	    connection-reset or End-of-file errors, switch to
15
#	    	    mongrel. Requires front-end web-proxy such as
16
#	    	    apache, nginx, or pound)
17
#	   See: http://reductivelabs.com/trac/puppet/wiki/UsingMongrel
18
SERVERTYPE=webrick
19
20
# How many puppetmaster instances to start? Its pointless to set this
21
# higher than 1 if you are not using mongrel. 
22
PUPPETMASTERS=1
23
24
# What port should the puppetmaster listen on (default: 8140). If
25
# PUPPETMASTERS is set to a number greater than 1, then the port for
26
# the first puppetmaster will be set to the port listed below, and
27
# further instances will be incremented by one 
28
#
29
# NOTE: if you are using mongrel, then you will need to have a
30
# front-end web-proxy (such as apache, nginx, pound) that takes
31
# incoming requests on the port your clients are connecting to
32
# (default is: 8140), and then passes them off to the mongrel
33
# processes.  In this case it is recommended to run your web-proxy on
34
# port 8140 and change the below number to something else, such as
35
# 18140.
36
PORT=8140