~bkerensa/ubuntu/raring/puppet/new-upstream-release

« back to all changes in this revision

Viewing changes to debian/patches/debian-changes-2.6.8-1ubuntu1

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-07-25 01:00:37 UTC
  • mfrom: (1.1.24 upstream) (3.1.25 sid)
  • Revision ID: james.westby@ubuntu.com-20110725010037-875vuxs10eboqgw3
Tags: 2.7.1-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
    set the location of the CRL in apache2 configuration. Fix apache2
    configuration on upgrade as well (LP: #641001)
  - move all puppet dependencies to puppet-common since all the code
    actually located in puppet-common.
  - move libagueas from a recommend to a dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Description: Upstream changes introduced in version 2.6.8-1ubuntu1
2
 
 This patch has been created by dpkg-source during the package build.
3
 
 Here's the last changelog entry, hopefully it gives details on why
4
 
 those changes were made:
5
 
 .
6
 
 puppet (2.6.8-1ubuntu1) oneiric; urgency=low
7
 
 .
8
 
   * Merge from debian unstable.  Remaining changes:
9
 
     - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
10
 
       set the location of the CRL in apache2 configuration. Fix apache2
11
 
       configuration on upgrade as well (LP: #641001)
12
 
     - move all puppet dependencies to puppet-common since all the code
13
 
       actually located in puppet-common.
14
 
     - move libagueas from a recommend to a dependency.
15
 
 .
16
 
 The person named in the Author field signed this changelog entry.
17
 
Author: Chuck Short <zulcss@ubuntu.com>
18
 
Bug-Ubuntu: https://bugs.launchpad.net/bugs/641001
19
 
 
20
 
---
21
 
The information above should follow the Patch Tagging Guidelines, please
22
 
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
23
 
are templates for supplementary fields that you might want to add:
24
 
 
25
 
Origin: <vendor|upstream|other>, <url of original patch>
26
 
Bug: <url in upstream bugtracker>
27
 
Bug-Debian: http://bugs.debian.org/<bugnumber>
28
 
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
29
 
Forwarded: <no|not-needed|url proving that it has been forwarded>
30
 
Reviewed-By: <name and email of someone who approved the patch>
31
 
Last-Update: <YYYY-MM-DD>
32
 
 
33
 
--- puppet-2.6.8.orig/lib/puppet/network/rest_authconfig.rb
34
 
+++ puppet-2.6.8/lib/puppet/network/rest_authconfig.rb
35
 
@@ -17,6 +17,7 @@ module Puppet
36
 
       { :acl => "/certificate/", :method => :find, :authenticated => false },
37
 
       { :acl => "/certificate_request", :method => [:find, :save], :authenticated => false },
38
 
       { :acl => "/status", :method => [:find], :authenticated => true },
39
 
+      { :acl => "/resource", :method => [:find, :save, :search], :authenticated => true },
40
 
     ]
41
 
 
42
 
     def self.main
43
 
--- puppet-2.6.8.orig/spec/unit/network/rest_authconfig_spec.rb
44
 
+++ puppet-2.6.8/spec/unit/network/rest_authconfig_spec.rb
45
 
@@ -17,6 +17,7 @@ describe Puppet::Network::RestAuthConfig
46
 
     { :acl => "/certificate/", :method => :find, :authenticated => false },
47
 
     { :acl => "/certificate_request", :method => [:find, :save], :authenticated => false },
48
 
     { :acl => "/status", :method => [:find], :authenticated => true },
49
 
+    { :acl => "/resource", :method => [:find, :save, :search], :authenticated => true },
50
 
   ]
51
 
 
52
 
   before :each do