summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornfagerlund <nick.fagerlund@gmail.com>2011-06-29 20:06:22 -0700
committernfagerlund <nick.fagerlund@gmail.com>2011-06-29 20:06:22 -0700
commitd58eacd6b4abc804bc5326184ed59c309fd04149 (patch)
treeb71b984e241b252003d89529ac9f8bd0fc17d5d2
parent902c4147a2100c1f71d8493c526ae5275bab4cdc (diff)
parent98cd89bdd44a68439ee4d030acc91fd0dda42707 (diff)
downloadpuppet-d58eacd6b4abc804bc5326184ed59c309fd04149.tar.gz
puppet-d58eacd6b4abc804bc5326184ed59c309fd04149.tar.xz
puppet-d58eacd6b4abc804bc5326184ed59c309fd04149.zip
Merge branch 'ticket/2.7.x/8147' into 2.7.x
-rw-r--r--lib/puppet/defaults.rb2
-rwxr-xr-xspec/integration/defaults_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index 07442d0e9..2247634b3 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -466,7 +466,7 @@ module Puppet
:desc => "The directory in which to store reports
received from the client. Each client gets a separate
subdirectory."},
- :reporturl => ["http://localhost:3000/reports",
+ :reporturl => ["http://localhost:3000/reports/upload",
"The URL used by the http reports processor to send reports"],
:fileserverconfig => ["$confdir/fileserver.conf", "Where the fileserver configuration is stored."],
:strict_hostname_checking => [false, "Whether to only search for the complete
diff --git a/spec/integration/defaults_spec.rb b/spec/integration/defaults_spec.rb
index 9bec769ab..8cf0e3e7b 100755
--- a/spec/integration/defaults_spec.rb
+++ b/spec/integration/defaults_spec.rb
@@ -275,6 +275,6 @@ describe "Puppet defaults" do
describe "reporturl" do
subject { Puppet.settings[:reporturl] }
- it { should == "http://localhost:3000/reports" }
+ it { should == "http://localhost:3000/reports/upload" }
end
end