~ubuntu-branches/ubuntu/trusty/puppet/trusty

« back to all changes in this revision

Viewing changes to lib/puppet/provider/package.rb

  • Committer: Package Import Robot
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-10-22 14:08:22 UTC
  • mfrom: (1.1.25) (3.1.32 sid)
  • Revision ID: package-import@ubuntu.com-20111022140822-odxde5lohc45yhuz
Tags: 2.7.6-1
* New upstream release (CVE-2011-3872)
* Remove cherry-picked "groupadd_aix_warning" patch
* Install all new manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#  Created by Luke A. Kanies on 2007-06-05.
2
 
#  Copyright (c) 2007. All rights reserved.
3
 
 
4
1
class Puppet::Provider::Package < Puppet::Provider
5
2
  # Prefetch our package list, yo.
6
3
  def self.prefetch(packages)
24
21
    end
25
22
    @property_hash.dup
26
23
  end
 
24
 
 
25
  def validate_source(value)
 
26
    true
 
27
  end
27
28
end