~ubuntu-branches/ubuntu/quantal/puppet/quantal

« back to all changes in this revision

Viewing changes to debian/puppetmaster.default

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-07-14 01:56:30 UTC
  • mfrom: (1.1.29) (3.1.43 sid)
  • Revision ID: package-import@ubuntu.com-20120714015630-ntj41rkvkq4zph4y
Tags: 2.7.18-1ubuntu1
* Resynchronise with Debian. (LP: #1023931) Remaining changes:
  - debian/puppetmaster-passenger.postinst: Make sure we error if puppet
    config print doesn't work
  - debian/puppetmaster-passenger.postinst: Ensure upgrades from
    <= 2.7.11-1 fixup passenger apache configuration.
* Dropped upstreamed patches:
  - debian/patches/CVE-2012-1906_CVE-2012-1986_to_CVE-2012-1989.patch
  - debian/patches/puppet-12844
  - debian/patches/2.7.17-Puppet-July-2012-CVE-fixes.patch
* Drop Build-Depends on ruby-rspec (in universe):
  - debian/control: remove ruby-rspec from Build-Depends
  - debian/patches/no-rspec.patch: make Rakefile work anyway if rspec
    isn't installed so we can use it in debian/rules.

Show diffs side-by-side

added added

removed removed

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