summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/puppetmasterd2
-rw-r--r--lib/puppet.rb3
2 files changed, 3 insertions, 2 deletions
diff --git a/bin/puppetmasterd b/bin/puppetmasterd
index 8e0d33684..1e9735ff5 100755
--- a/bin/puppetmasterd
+++ b/bin/puppetmasterd
@@ -42,7 +42,7 @@
#
# manifest::
# The central site manifest to use for providing clients with their individual
-# configurations. Defaults to /etc/puppet/manifest.pp.
+# configurations. Defaults to /etc/puppet/manifests/site.pp.
#
# noca::
# Do not function as a certificate authority.
diff --git a/lib/puppet.rb b/lib/puppet.rb
index d204ed36f..0c5adfdcd 100644
--- a/lib/puppet.rb
+++ b/lib/puppet.rb
@@ -73,7 +73,8 @@ module Puppet
:statedir => [:puppetvar, "state"],
# then the files},
- :manifest => [:puppetconf, "manifest.pp"],
+ :manifestdir => [:puppetconf, "manifests"],
+ :manifest => [:manifestdir, "site.pp"],
:localconfig => [:puppetconf, "localconfig.ma"],
:logfile => [:logdir, "puppet.log"],
:httplogfile => [:logdir, "http.log"],