summaryrefslogtreecommitdiffstats
path: root/lib/puppet/defaults.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@reductivelabs.com>2010-03-25 14:55:51 -0700
committertest branch <puppet-dev@googlegroups.com>2010-02-17 06:50:53 -0800
commit2a60e1e5eef42a1a0f11574d69f3c90be22e52ca (patch)
treebf56971411d00fb8b6391f1140aa2ed2f8d378a1 /lib/puppet/defaults.rb
parent626945bb33fa0b294100414c058a1f4d2b3e0039 (diff)
downloadpuppet-2a60e1e5eef42a1a0f11574d69f3c90be22e52ca.tar.gz
puppet-2a60e1e5eef42a1a0f11574d69f3c90be22e52ca.tar.xz
puppet-2a60e1e5eef42a1a0f11574d69f3c90be22e52ca.zip
Adding :catalog_terminus setting
This will rarely be used, but it enables even more architectural flexibility, such as precompiling catalogs and storing them in memcached or equivalent. With this setup, a single host can probably serve all catalogs and you would then just have as many compiling hosts as needed. Signed-off-by: Luke Kanies <luke@reductivelabs.com>
Diffstat (limited to 'lib/puppet/defaults.rb')
-rw-r--r--lib/puppet/defaults.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index c67e9efd7..701b785f1 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -149,6 +149,8 @@ module Puppet
huge numbers that can then not be fed back into the system. This is a hackish way to fail in a
slightly more useful way when that happens."],
:node_terminus => ["plain", "Where to find information about nodes."],
+ :catalog_terminus => ["compiler", "Where to get node catalogs. This is useful to change if, for instance,
+ you'd like to pre-compile catalogs and store them in memcached or some other easily-accessed store."],
:httplog => { :default => "$logdir/http.log",
:owner => "root",
:mode => 0640,